From 68cfe9917ffcb00dd316f49e9afc34778cf4f81f Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Mon, 19 Dec 2022 22:33:14 -0800 Subject: [PATCH 01/19] Support sync, backup, and restore --- src/amg/azext_amg/_client_factory.py | 4 +- src/amg/azext_amg/_help.py | 28 +++ src/amg/azext_amg/_params.py | 19 ++ src/amg/azext_amg/archive.py | 30 +++ src/amg/azext_amg/commands.py | 8 + src/amg/azext_amg/commons.py | 45 +++++ src/amg/azext_amg/create_annotation.py | 19 ++ src/amg/azext_amg/create_dashboard.py | 28 +++ src/amg/azext_amg/create_datasource.py | 19 ++ src/amg/azext_amg/create_folder.py | 18 ++ src/amg/azext_amg/create_snapshot.py | 27 +++ src/amg/azext_amg/custom.py | 249 +++++++++++++++++++++---- src/amg/azext_amg/dashboardApi.py | 198 ++++++++++++++++++++ src/amg/azext_amg/restore.py | 52 ++++++ src/amg/azext_amg/save.py | 28 +++ src/amg/azext_amg/save_annotations.py | 47 +++++ src/amg/azext_amg/save_dashboards.py | 71 +++++++ src/amg/azext_amg/save_datasources.py | 35 ++++ src/amg/azext_amg/save_folders.py | 66 +++++++ src/amg/azext_amg/save_snapshots.py | 47 +++++ 20 files changed, 1003 insertions(+), 35 deletions(-) create mode 100644 src/amg/azext_amg/archive.py create mode 100644 src/amg/azext_amg/commons.py create mode 100644 src/amg/azext_amg/create_annotation.py create mode 100644 src/amg/azext_amg/create_dashboard.py create mode 100644 src/amg/azext_amg/create_datasource.py create mode 100644 src/amg/azext_amg/create_folder.py create mode 100644 src/amg/azext_amg/create_snapshot.py create mode 100644 src/amg/azext_amg/dashboardApi.py create mode 100644 src/amg/azext_amg/restore.py create mode 100644 src/amg/azext_amg/save.py create mode 100644 src/amg/azext_amg/save_annotations.py create mode 100644 src/amg/azext_amg/save_dashboards.py create mode 100644 src/amg/azext_amg/save_datasources.py create mode 100644 src/amg/azext_amg/save_folders.py create mode 100644 src/amg/azext_amg/save_snapshots.py diff --git a/src/amg/azext_amg/_client_factory.py b/src/amg/azext_amg/_client_factory.py index da746bc832a..743ce11de3b 100644 --- a/src/amg/azext_amg/_client_factory.py +++ b/src/amg/azext_amg/_client_factory.py @@ -4,8 +4,8 @@ # -------------------------------------------------------------------------------------------- -def cf_amg(cli_ctx, *_): +def cf_amg(cli_ctx, subscription, *_): # pylint: disable=unused-argument from azure.cli.core.commands.client_factory import get_mgmt_service_client from azext_amg.vendored_sdks import DashboardManagementClient - return get_mgmt_service_client(cli_ctx, DashboardManagementClient) + return get_mgmt_service_client(cli_ctx, DashboardManagementClient, subscription_id=subscription) diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index d636a99fae3..88723b60c14 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -33,6 +33,16 @@ short-summary: Show details of a Azure Managed Grafana instance. """ +helps['grafana backup'] = """ + type: command + short-summary: Backup an Azure Managed Grafana instance's content to an achive. +""" + +helps['grafana restore'] = """ + type: command + short-summary: Restore an Azure Managed Grafana instance from an achive. +""" + helps['grafana update'] = """ type: command short-summary: Update a Azure Managed Grafana instance. @@ -45,6 +55,24 @@ az grafana update -g MyResourceGroup -n MyGrafana --smtp enabled --from-address johndoe@outlook.com --from-name john --host "smtp.mailgun.org:587" --user "postmaster@sandbox12345.mailgun.org" --password "password" --start-tls-policy OpportunisticStartTLS --skip-verify true """ +helps['grafana dashboard sync'] = """ + type: command + short-summary: Sync Azure Managed Grafana dashboards from one instance to another instance. + examples: + - name: Sync with a few folders skipped + text: | + az grafana dashboard sync + --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source + --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination + --skip-folders "Azure Monitor Container Insights" "Azure Monitor" + - name: Preview the sync + text: | + az grafana sync + --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source + --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination + --dry-run +""" + helps['grafana data-source'] = """ type: group short-summary: Commands to manage data sources of an instance. diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index 8995b630938..26fc9d883b3 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -27,6 +27,8 @@ def load_arguments(self, _): c.argument("folder", help="id, uid, title which can identify a folder. CLI will search in the order of id, uid, and title, till finds a match") c.argument("api_key_or_token", options_list=["--api-key", "--token", '-t'], help="api key or service account token, a randomly generated string used to interact with Grafana endpoint; if missing, CLI will use logon user's credentials") + c.argument("components", get_enum_type(["dashboards", "datasources", "folders", "snapshots", "annotations"]), nargs='+', options_list=["-c", "--components"], help="grafana artifact types to backup") + c.ignore("subscription") # a help argument with self.argument_context("grafana create") as c: c.argument("grafana_name", grafana_name_type, options_list=["--name", "-n"], validator=None) @@ -51,6 +53,23 @@ def load_arguments(self, _): c.argument("start_tls_policy", get_enum_type(["OpportunisticStartTLS", "MandatoryStartTLS", "NoStartTLS"]), arg_group='SMTP', help="TLS policy") c.argument("skip_verify", arg_group='SMTP', arg_type=get_three_state_flag(), help="Skip verifying SSL for SMTP server") + with self.argument_context("grafana dashboard sync") as c: + c.argument("source", options_list=["--source", "-s"], help="resource id of the source workspace") + c.argument("destination", options_list=["--destination", "-d"], help="resource id of the destination workspace") + c.argument("dry_run", arg_type=get_three_state_flag(), help="preview changes w/o committing") + c.argument("skip_folders", nargs="+", help="space separated folder list which sync command shall skip") + c.argument("data_source_uid_mappings", options_list=["--data-source-uid-mappings", "-m"], nargs="+", + help="space seperated key vaule pairs that 'sync' command can link to new data sources at destination workspace, e.g. --data-source-uid-mappings datasource-1=datasource-2") + + with self.argument_context("grafana sync") as c: + c.argument("sync_data_sources", arg_type=get_three_state_flag(), help="sync up data sources. default: false") + + with self.argument_context("grafana backup") as c: + c.argument("directory", options_list=["-d", "--directory"], help="directory to backup Grafana artifacts") + + with self.argument_context("grafana restore") as c: + c.argument("archive_file", options_list=["-a", "--archive-file"], help="archive to restore Grafana artifacts from") + with self.argument_context("grafana dashboard") as c: c.argument("uid", options_list=["--dashboard"], help="dashboard uid") c.argument("title", help="title of a dashboard") diff --git a/src/amg/azext_amg/archive.py b/src/amg/azext_amg/archive.py new file mode 100644 index 00000000000..dcbbb0e5f81 --- /dev/null +++ b/src/amg/azext_amg/archive.py @@ -0,0 +1,30 @@ +from glob import glob +import os +import tarfile +import shutil +from knack.log import get_logger + +logger = get_logger(__name__) + + +def archive(backup_dir, timestamp): + archive_file = '{0}/{1}.tar.gz'.format(backup_dir, timestamp) + backup_files = [] + + for folder_name in ['folders', 'datasources', 'dashboards', 'alert_channels', 'organizations', 'users', 'snapshots', 'versions', 'annotations']: + backup_path = '{0}/{1}/{2}'.format(backup_dir, folder_name, timestamp) + + for file_path in glob(backup_path): + logger.info('backup %s at: %s', folder_name, file_path) + backup_files.append(file_path) + + if os.path.exists(archive_file): + os.remove(archive_file) + + with tarfile.open(archive_file, "w:gz") as tar: + for file_path in backup_files: + tar.add(file_path) + if not os.environ.get("AMG_DEBUG", False): + shutil.rmtree(os.path.abspath(os.path.join(file_path, os.pardir))) + tar.close() + logger.warning('Created archive at: %s', archive_file) diff --git a/src/amg/azext_amg/commands.py b/src/amg/azext_amg/commands.py index fa63bdda035..ef133ae9c56 100644 --- a/src/amg/azext_amg/commands.py +++ b/src/amg/azext_amg/commands.py @@ -16,6 +16,13 @@ def load_command_table(self, _): g.custom_command('list', 'list_grafana') g.custom_show_command('show', 'show_grafana') g.custom_command('update', 'update_grafana') + g.custom_command('backup', 'backup_grafana', is_preview=True) + g.custom_command('restore', 'restore_grafana', is_preview=True) + + with self.command_group('grafana annotation') as g: + g.custom_command('create', 'create_annotation') + g.custom_command('list', 'list_annotations') + g.custom_command('delete', 'delete_annotation') with self.command_group('grafana dashboard') as g: g.custom_command('create', 'create_dashboard') @@ -24,6 +31,7 @@ def load_command_table(self, _): g.custom_show_command('show', 'show_dashboard') g.custom_command('update', 'update_dashboard') g.custom_command('import', 'import_dashboard') + g.custom_command('sync', 'sync_dashboard', is_preview=True) with self.command_group('grafana data-source') as g: g.custom_command('create', 'create_data_source') diff --git a/src/amg/azext_amg/commons.py b/src/amg/azext_amg/commons.py new file mode 100644 index 00000000000..7c7aa9c15fd --- /dev/null +++ b/src/amg/azext_amg/commons.py @@ -0,0 +1,45 @@ +import re +import sys +import json + +from knack.log import get_logger + +logger = get_logger(__name__) + + +def print_horizontal_line(): + logger.info('') + logger.info("########################################") + logger.info('') + + +def log_response(resp): + status_code = resp.status_code + logger.debug("[DEBUG] resp status: %s", status_code) + try: + logger.debug("[DEBUG] resp body: %s", resp.json()) + except ValueError: + logger.debug("[DEBUG] resp body: %s", resp.text) + return resp + + +def to_python2_and_3_compatible_string(some_string): + if sys.version_info[0] > 2: + return some_string + else: + return some_string.encode('utf8') + + +def save_json(file_name, data, folder_path, extension, pretty_print): + pattern = "^db/|^uid/" + if re.match(pattern, file_name): + file_name = re.sub(pattern, '', file_name) + + file_path = folder_path + '/' + file_name + '.' + extension + with open("{0}".format(file_path), 'w', encoding="utf8") as f: + if pretty_print: + f.write(json.dumps(data, sort_keys=True, indent=4, separators=(',', ': '))) + else: + f.write(json.dumps(data)) + # Return file_path for showing in the console message + return file_path diff --git a/src/amg/azext_amg/create_annotation.py b/src/amg/azext_amg/create_annotation.py new file mode 100644 index 00000000000..633ce91ce56 --- /dev/null +++ b/src/amg/azext_amg/create_annotation.py @@ -0,0 +1,19 @@ +import json +from knack.log import get_logger +from .dashboardApi import send_grafana_post + +logger = get_logger(__name__) + + +def create_annotation(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + annotation = json.loads(data) + result = _create_annotation(json.dumps(annotation), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + logger.info("create annotation: %s, status: %s, msg: %s", annotation['id'], result[0], result[1]) + + +def _create_annotation(annotation, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + url = '{0}/api/annotations'.format(grafana_url) + return send_grafana_post(url, annotation, http_post_headers, verify_ssl, client_cert, debug) diff --git a/src/amg/azext_amg/create_dashboard.py b/src/amg/azext_amg/create_dashboard.py new file mode 100644 index 00000000000..3253d77c434 --- /dev/null +++ b/src/amg/azext_amg/create_dashboard.py @@ -0,0 +1,28 @@ +import json +from knack.log import get_logger +from .dashboardApi import get_folder_id, send_grafana_post + +logger = get_logger(__name__) + + +def create_dashboard(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + content = json.loads(data) + content['dashboard']['id'] = None + + payload = { + 'dashboard': content['dashboard'], + 'folderId': get_folder_id(content, grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None), + 'overwrite': True + } + + result = _create_dashboard(json.dumps(payload), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + dashboard_title = content['dashboard'].get('title', '') + logger.info("create dashboard %s response status: %s, msg: %s", dashboard_title, result[0], result[1]) + + +def _create_dashboard(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + return send_grafana_post('{0}/api/dashboards/db'.format(grafana_url), payload, http_post_headers, verify_ssl, + client_cert, debug) diff --git a/src/amg/azext_amg/create_datasource.py b/src/amg/azext_amg/create_datasource.py new file mode 100644 index 00000000000..37df8e7e836 --- /dev/null +++ b/src/amg/azext_amg/create_datasource.py @@ -0,0 +1,19 @@ +import json +from knack.log import get_logger +from .dashboardApi import send_grafana_post + +logger = get_logger(__name__) + + +def create_datasource(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + datasource = json.loads(data) + result = _create_datasource(json.dumps(datasource), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + logger.info("create datasource: %s, status: %s, msg: %s", datasource['name'], result[0], result[1]) + + +def _create_datasource(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + return send_grafana_post('{0}/api/datasources'.format(grafana_url), payload, http_post_headers, verify_ssl, + client_cert, debug) diff --git a/src/amg/azext_amg/create_folder.py b/src/amg/azext_amg/create_folder.py new file mode 100644 index 00000000000..73a1cd21268 --- /dev/null +++ b/src/amg/azext_amg/create_folder.py @@ -0,0 +1,18 @@ +import json +from knack.log import get_logger +from .dashboardApi import send_grafana_post + +logger = get_logger(__name__) + + +def create_folder(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + folder = json.loads(data) + result = _create_folder(json.dumps(folder), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + logger.info("create folder %s, status: %s, msg: %s\n", folder.get('title', ''), result[0], result[1]) + + +def _create_folder(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + return send_grafana_post('{0}/api/folders'.format(grafana_url), payload, http_post_headers, verify_ssl, client_cert, debug) diff --git a/src/amg/azext_amg/create_snapshot.py b/src/amg/azext_amg/create_snapshot.py new file mode 100644 index 00000000000..ba69411a51a --- /dev/null +++ b/src/amg/azext_amg/create_snapshot.py @@ -0,0 +1,27 @@ +import json +from knack.log import get_logger +from .dashboardApi import send_grafana_post + +logger = get_logger(__name__) + + +def create_snapshot(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + snapshot = json.loads(data) + try: + snapshot['name'] = snapshot['dashboard']['title'] + except KeyError: + snapshot['name'] = "Untitled Snapshot" + + (status, content) = _create_snapshot(json.dumps(snapshot), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + if status == 200: + logger.info("create snapshot: %s, status: %s, msg: %s", snapshot['name'], status, content) + else: + logger.info("creating snapshot %s failed with status %s", snapshot['name'], status) + + +def _create_snapshot(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + return send_grafana_post('{0}/api/snapshots'.format(grafana_url), payload, http_post_headers, verify_ssl, + client_cert, debug) diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index b7c5f0abcdc..d53b9f664cd 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -6,6 +6,7 @@ import json import requests +from msrestazure.tools import is_valid_resource_id, parse_resource_id from msrestazure.azure_exceptions import CloudError from knack.log import get_logger @@ -32,7 +33,7 @@ def create_grafana(cmd, resource_group_name, grafana_name, if skip_role_assignments and principal_ids: raise ArgumentUsageError("--skip-role-assignments | --assignee-object-ids") - client = cf_amg(cmd.cli_ctx) + client = cf_amg(cmd.cli_ctx, subscription=None) resource = { "sku": { "name": "Standard" @@ -142,7 +143,7 @@ def _delete_role_assignment(cli_ctx, principal_id): def list_grafana(cmd, resource_group_name=None): - client = cf_amg(cmd.cli_ctx) + client = cf_amg(cmd.cli_ctx, subscription=None) if resource_group_name: return client.grafana.list_by_resource_group(resource_group_name) return client.grafana.list() @@ -160,8 +161,7 @@ def update_grafana(cmd, grafana_name, api_key_and_service_account=None, determin and not from_name and skip_verify is None): raise ArgumentUsageError("Please supply at least one parameter value to update the Grafana workspace") - client = cf_amg(cmd.cli_ctx) - + client = cf_amg(cmd.cli_ctx, subscription=None) instance = client.grafana.get(resource_group_name, grafana_name) if api_key_and_service_account: @@ -206,13 +206,13 @@ def update_grafana(cmd, grafana_name, api_key_and_service_account=None, determin return client.grafana.begin_create(resource_group_name, grafana_name, instance) -def show_grafana(cmd, grafana_name, resource_group_name=None): - client = cf_amg(cmd.cli_ctx) +def show_grafana(cmd, grafana_name, resource_group_name=None, subscription=None): + client = cf_amg(cmd.cli_ctx, subscription=subscription) return client.grafana.get(resource_group_name, grafana_name) def delete_grafana(cmd, grafana_name, resource_group_name=None): - client = cf_amg(cmd.cli_ctx) + client = cf_amg(cmd.cli_ctx, subscription=None) grafana = client.grafana.get(resource_group_name, grafana_name) # delete first @@ -225,20 +225,191 @@ def delete_grafana(cmd, grafana_name, resource_group_name=None): _delete_role_assignment(cmd.cli_ctx, grafana.identity.principal_id) -def show_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_token=None): +def backup_grafana(cmd, grafana_name, components=None, directory=None, resource_group_name=None): + import os + from pathlib import Path + from .save import save + creds = _get_data_plane_creds(cmd, api_key_or_token=None, subscription=None) + headers = { + "content-type": "application/json", + "authorization": "Bearer " + creds[1] + } + + save(grafana_url=_get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription=None), + backup_dir=directory or os.path.join(Path.cwd(), "_backup"), + components=components, + http_headers=headers) + + +def restore_grafana(cmd, grafana_name, archive_file, components=None, resource_group_name=None): + creds = _get_data_plane_creds(cmd, api_key_or_token=None, subscription=None) + headers = { + "content-type": "application/json", + "authorization": "Bearer " + creds[1] + } + from .restore import restore + restore(grafana_url=_get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription=None), + archive_file=archive_file, + components=components, + http_headers=headers) + + +def sync_dashboard(cmd, source, destination, skip_folders=None, dry_run=None): + # pylint: disable=too-many-locals, too-many-branches, too-many-statements + if not is_valid_resource_id(source): + raise ArgumentUsageError(f"'{source}' isn't a valid resource id, please refer to example commands in help") + if not is_valid_resource_id(destination): + raise ArgumentUsageError(f"'{destination}' isn't a valid resource id, please refer to example commands in help") + + if source.lower() == destination.lower(): + raise ArgumentUsageError(f"Destination workspace should be different from the source workspace") + + parsed_source = parse_resource_id(source) + parsed_destination = parse_resource_id(destination) + + source_workspace, source_resource_group, source_subscription = (parsed_source["name"], + parsed_source["resource_group"], + parsed_source["subscription"]) + destination_workspace, destination_resource_group, destination_subscription = (parsed_destination["name"], + parsed_destination["resource_group"], + parsed_destination["subscription"]) + + # TODO: skip READ-ONLY destination dashboard (rare case) + destination_folders = list_folders(cmd, destination_workspace, resource_group_name=destination_resource_group, + subscription=destination_subscription) + destination_folders = {f["title"].lower(): f["id"] for f in destination_folders} + + destination_data_sources = list_data_sources(cmd, destination_workspace, destination_resource_group, + subscription=destination_subscription) + source_data_sources = list_data_sources(cmd, source_workspace, source_resource_group, + subscription=source_subscription) + uid_mapping = {} + for s in source_data_sources: + s_type = s.get("type") + s_name = s.get("name") + matched_ds = next((x for x in destination_data_sources if s_type == x.get("type") and s_name == x.get("name")), None) + if not matched_ds: + continue + uid_mapping[s.get("uid")] = matched_ds.get("uid") + + source_dashboards = list_dashboards(cmd, source_workspace, resource_group_name=source_resource_group, + subscription=source_subscription) + + skip_folders = skip_folders or [] + summary = { + "folders_created": [], + "dashboards_synced": [], + "dashboards_skipped": [], + } + data_source_missed = set() + data_source_unmatched = set() # requires uid mapping + for dashboard in source_dashboards: + uid = dashboard["uid"] + source_dashboard = show_dashboard(cmd, source_workspace, uid, resource_group_name=source_resource_group, + subscription=source_subscription) + folder_title = source_dashboard["meta"]["folderTitle"] + dashboard_path = folder_title + "/" + source_dashboard["dashboard"]["title"] + under_skip_folders = bool(next((f for f in skip_folders if folder_title.lower() == f.lower()), None)) + if source_dashboard["meta"].get("provisioned") or under_skip_folders: + summary["dashboards_skipped"].append(dashboard_path) + continue + + # Figure out whether we shall correct the data sources. It is possible the Uids are different + remap_uids(source_dashboard.get("dashboard"), uid_mapping, data_source_missed) + if not dry_run: + delete_dashboard(cmd, destination_workspace, uid, resource_group_name=destination_resource_group, + ignore_error=True, subscription=destination_subscription) + + # ensure the folder exists at destination side + if folder_title.lower() == "general": + folder_id = None + else: + folder_id = destination_folders.get(folder_title.lower()) + if not folder_id: + summary["folders_created"].append(folder_title) + if not dry_run: + logger.warning("Creating folder: %s", folder_title) + new_folder = create_folder(cmd, destination_workspace, title=folder_title, + resource_group_name=destination_resource_group, + subscription=destination_subscription) + folder_id = new_folder["id"] + destination_folders[folder_title.lower()] = folder_id or "dry run dummy" + + summary["dashboards_synced"].append(dashboard_path) + if not dry_run: + logger.warning("Syncing dashboard: %s", dashboard_path) + _create_dashboard(cmd, destination_workspace, definition=source_dashboard, overwrite=True, + folder_id=folder_id, resource_group_name=destination_resource_group, + for_sync=True) + if data_source_missed: + logger.warning(("A few data sources used by dashboards are unavailable at destination: \"%s\"" + ". Please configure them."), ", ".join(data_source_missed)) + if data_source_unmatched: + logger.warning(("Data sources used by dashboards have more than one matches at destination: \"%s\"" + ". Use --data_source-uid-mappings to disambiguate"), ", ".join(data_source_unmatched)) + return summary + + +def remap_uids(indict, uid_mapping, data_source_missed): + if isinstance(indict, dict): + for key, value in indict.items(): + if isinstance(value, dict): + if key == "datasource" and isinstance(value, dict) and ("uid" in value): + if value["uid"] in uid_mapping: + value["uid"] = uid_mapping[value["uid"]] + elif value["uid"] not in ["-- Grafana --", "grafana"]: + data_source_missed.add(value["uid"]) + else: + remap_uids(value, uid_mapping, data_source_missed) + elif isinstance(value, (list, tuple)): + for v in value: + remap_uids(v, uid_mapping, data_source_missed) + + +def create_annotation(cmd, grafana_name, description, resource_group_name=None, api_key_or_token=None, subscription=None): + payload = { + "text": description + } + response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/annotations", body=payload, + api_key_or_token=api_key_or_token, subscription=subscription) + return json.loads(response.content) + + +def list_annotations(cmd, grafana_name, resource_group_name=None, api_key_or_token=None, subscription=None): + response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/annotations", + api_key_or_token=api_key_or_token, subscription=subscription) + return json.loads(response.content) + + +def delete_annotation(cmd, grafana_name, annotation, resource_group_name=None, api_key_or_token=None, subscription=None): + _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/annotations/" + annotation, + api_key_or_token=api_key_or_token, subscription=subscription) + + +def show_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_token=None, subscription=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/dashboards/uid/" + uid, - api_key_or_token=api_key_or_token) + api_key_or_token=api_key_or_token, subscription=subscription) return json.loads(response.content) -def list_dashboards(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): +def list_dashboards(cmd, grafana_name, resource_group_name=None, api_key_or_token=None, subscription=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/search?type=dash-db", - api_key_or_token=api_key_or_token) + api_key_or_token=api_key_or_token, subscription=subscription) return json.loads(response.content) def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, resource_group_name=None, overwrite=None, api_key_or_token=None): + folder_id = None + if folder: + folder_id = _find_folder(cmd, resource_group_name, grafana_name, folder) + return _create_dashboard(cmd, grafana_name, definition=definition, title=title, folder_id=folder_id, + resource_group_name=resource_group_name, overwrite=overwrite, + api_key_or_token=api_key_or_token) + + +def _create_dashboard(cmd, grafana_name, definition, title=None, folder_id=None, resource_group_name=None, + overwrite=None, api_key_or_token=None, for_sync=True, subscription=None): if "dashboard" in definition: payload = definition else: @@ -249,18 +420,18 @@ def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, res if title: payload['dashboard']['title'] = title - if folder: - folder = _find_folder(cmd, resource_group_name, grafana_name, folder) - payload['folderId'] = folder['id'] + if folder_id: + payload['folderId'] = folder_id payload['overwrite'] = overwrite or False if "id" in payload['dashboard']: - logger.warning("Removing 'id' from dashboard to prevent the error of 'Not Found'") + if not for_sync: + logger.warning("Removing 'id' from dashboard to prevent the error of 'Not Found'") del payload['dashboard']['id'] response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/dashboards/db", - payload, api_key_or_token=api_key_or_token) + payload, api_key_or_token=api_key_or_token, subscription=subscription) return json.loads(response.content) @@ -334,9 +505,11 @@ def _try_load_dashboard_definition(cmd, resource_group_name, grafana_name, defin return definition -def delete_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_token=None): +def delete_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_token=None, + ignore_error=False, subscription=None): _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/dashboards/uid/" + uid, - api_key_or_token=api_key_or_token) + api_key_or_token=api_key_or_token, raise_for_error_status=(not ignore_error), + subscription=subscription) def create_data_source(cmd, grafana_name, definition, resource_group_name=None, api_key_or_token=None): @@ -355,9 +528,9 @@ def delete_data_source(cmd, grafana_name, data_source, resource_group_name=None, api_key_or_token=api_key_or_token) -def list_data_sources(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): +def list_data_sources(cmd, grafana_name, resource_group_name=None, api_key_or_token=None, subscription=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/datasources", - api_key_or_token=api_key_or_token) + api_key_or_token=api_key_or_token, subscription=subscription) return json.loads(response.content) @@ -416,18 +589,18 @@ def test_notification_channel(cmd, grafana_name, notification_channel, resource_ return response -def create_folder(cmd, grafana_name, title, resource_group_name=None, api_key_or_token=None): +def create_folder(cmd, grafana_name, title, resource_group_name=None, api_key_or_token=None, subscription=None): payload = { "title": title } response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/folders", payload, - api_key_or_token=api_key_or_token) + api_key_or_token=api_key_or_token, subscription=subscription) return json.loads(response.content) -def list_folders(cmd, grafana_name, resource_group_name=None, api_key_or_token=None): +def list_folders(cmd, grafana_name, resource_group_name=None, api_key_or_token=None, subscription=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/folders", - api_key_or_token=api_key_or_token) + api_key_or_token=api_key_or_token, subscription=subscription) return json.loads(response.content) @@ -748,18 +921,11 @@ def _try_load_file_content(file_content): return file_content -def _send_request(cmd, resource_group_name, grafana_name, http_method, path, body=None, raise_for_error_status=True, - api_key_or_token=None): - endpoint = grafana_endpoints.get(grafana_name) - if not endpoint: - grafana = show_grafana(cmd, grafana_name, resource_group_name) - endpoint = grafana.properties.endpoint - grafana_endpoints[grafana_name] = endpoint - +def _get_data_plane_creds(cmd, api_key_or_token, subscription): from azure.cli.core._profile import Profile profile = Profile(cli_ctx=cmd.cli_ctx) # this might be a cross tenant scenario, so pass subscription to get_raw_token - subscription = get_subscription_id(cmd.cli_ctx) + subscription = subscription or get_subscription_id(cmd.cli_ctx) amg_first_party_app = ("7f525cdc-1f08-4afa-af7c-84709d42f5d3" if "-ppe." in cmd.cli_ctx.cloud.endpoints.active_directory else "ce34e7e5-485f-4d76-964f-b3d2b16d1e4f") @@ -768,6 +934,23 @@ def _send_request(cmd, resource_group_name, grafana_name, http_method, path, bod else: creds, _, _ = profile.get_raw_token(subscription=subscription, resource=amg_first_party_app) + return creds + + +def _get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription): + endpoint = grafana_endpoints.get(grafana_name) + if not endpoint: + grafana = show_grafana(cmd, grafana_name, resource_group_name, subscription=subscription) + endpoint = grafana.properties.endpoint + grafana_endpoints[grafana_name] = endpoint + return endpoint + + +def _send_request(cmd, resource_group_name, grafana_name, http_method, path, body=None, raise_for_error_status=True, + api_key_or_token=None, subscription=None): + endpoint = _get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription) + + creds = _get_data_plane_creds(cmd, api_key_or_token, subscription) headers = { "content-type": "application/json", diff --git a/src/amg/azext_amg/dashboardApi.py b/src/amg/azext_amg/dashboardApi.py new file mode 100644 index 00000000000..8fe2380bbea --- /dev/null +++ b/src/amg/azext_amg/dashboardApi.py @@ -0,0 +1,198 @@ +import re +import json +import requests +from knack.log import get_logger +from .commons import log_response + +logger = get_logger(__name__) + + +def search_dashboard(page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + url = '{0}/api/search/?type=dash-db&limit={1}&page={2}'.format(grafana_url, limit, page) + logger.info("search dashboard in grafana: %s", url) + return send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + + +def get_dashboard(board_uri, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + url = '{0}/api/dashboards/{1}'.format(grafana_url, board_uri) + logger.info("query dashboard uri: %s", url) + (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + return (status_code, content) + + +def search_annotations(grafana_url, ts_from, ts_to, http_get_headers, verify_ssl, client_cert, debug): + # there is two types of annotations + # annotation: are user created, custom ones and can be managed via the api + # alert: are created by Grafana itself, can NOT be managed by the api + url = '{0}/api/annotations?type=annotation&limit=5000&from={1}&to={2}'.format(grafana_url, ts_from, ts_to) + (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + return (status_code, content) + + +def search_alert_channels(grafana_url, http_get_headers, verify_ssl, client_cert, debug): + url = '{0}/api/alert-notifications'.format(grafana_url) + logger.info("search alert channels in grafana: %s", url) + return send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + + +def create_alert_channel(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + return send_grafana_post('{0}/api/alert-notifications'.format(grafana_url), payload, http_post_headers, verify_ssl, + client_cert, debug) + + +def delete_alert_channel_by_uid(uid, grafana_url, http_post_headers): + r = requests.delete('{0}/api/alert-notifications/uid/{1}'.format(grafana_url, uid), headers=http_post_headers) + return int(r.status_code) + + +def delete_alert_channel_by_id(id_, grafana_url, http_post_headers): + r = requests.delete('{0}/api/alert-notifications/{1}'.format(grafana_url, id_), headers=http_post_headers) + return int(r.status_code) + + +def search_alerts(grafana_url, http_get_headers, verify_ssl, client_cert, debug): + url = '{0}/api/alerts'.format(grafana_url) + (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + return (status_code, content) + + +def pause_alert(id_, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + url = '{0}/api/alerts/{1}/pause'.format(grafana_url, id_) + payload = '{ "paused": true }' + (status_code, content) = send_grafana_post(url, payload, http_post_headers, verify_ssl, client_cert, debug) + return (status_code, content) + + +def unpause_alert(id_, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + url = '{0}/api/alerts/{1}/pause'.format(grafana_url, id_) + payload = '{ "paused": false }' + (status_code, content) = send_grafana_post(url, payload, http_post_headers, verify_ssl, client_cert, debug) + return (status_code, content) + + +def delete_folder(uid, grafana_url, http_post_headers): + r = requests.delete('{0}/api/folders/{1}'.format(grafana_url, uid), headers=http_post_headers) + return int(r.status_code) + + +def delete_snapshot(key, grafana_url, http_post_headers): + r = requests.delete('{0}/api/snapshots/{1}'.format(grafana_url, key), headers=http_post_headers) + return int(r.status_code) + + +def delete_dashboard_by_uid(uid, grafana_url, http_post_headers): + r = requests.delete('{0}/api/dashboards/uid/{1}'.format(grafana_url, uid), headers=http_post_headers) + return int(r.status_code) + + +def delete_dashboard_by_slug(slug, grafana_url, http_post_headers): + r = requests.delete('{0}/api/dashboards/db/{1}'.format(grafana_url, slug), headers=http_post_headers) + return int(r.status_code) + + +def search_datasource(grafana_url, http_get_headers, verify_ssl, client_cert, debug): + logger.info("search datasources in grafana:") + return send_grafana_get('{0}/api/datasources'.format(grafana_url), http_get_headers, verify_ssl, client_cert, debug) + + +def search_snapshot(grafana_url, http_get_headers, verify_ssl, client_cert, debug): + logger.info("search snapshots in grafana:") + return send_grafana_get('{0}/api/dashboard/snapshots'.format(grafana_url), http_get_headers, verify_ssl, client_cert, debug) + + +def get_snapshot(key, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + url = '{0}/api/snapshots/{1}'.format(grafana_url, key) + (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + return (status_code, content) + + +def search_folders(grafana_url, http_get_headers, verify_ssl, client_cert, debug): + logger.info("search folder in grafana:") + return send_grafana_get('{0}/api/search/?type=dash-folder'.format(grafana_url), http_get_headers, verify_ssl, + client_cert, debug) + + +def get_folder(uid, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + (status_code, content) = send_grafana_get('{0}/api/folders/{1}'.format(grafana_url, uid), http_get_headers, + verify_ssl, client_cert, debug) + logger.info("query folder:%s, status:%s", uid, status_code) + return (status_code, content) + + +def get_folder_permissions(uid, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + (status_code, content) = send_grafana_get('{0}/api/folders/{1}/permissions'.format(grafana_url, uid), http_get_headers, + verify_ssl, client_cert, debug) + logger.info("query folder permissions:%s, status:%s", uid, status_code) + return (status_code, content) + + +def update_folder_permissions(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + items = json.dumps({'items': payload}) + return send_grafana_post('{0}/api/folders/{1}/permissions'.format(grafana_url, payload[0]['uid']), items, http_post_headers, verify_ssl, client_cert, + debug) + + +def get_folder_id(dashboard, grafana_url, http_post_headers, verify_ssl, client_cert, debug): + folder_uid = "" + try: + folder_uid = dashboard['meta']['folderUid'] + except KeyError: + matches = re.search('dashboards/f/(.*)/.*', dashboard['meta']['folderUrl']) + if matches is not None: + folder_uid = matches.group(1) + else: + folder_uid = '0' + + if folder_uid != "": + logger.debug("debug: quering with uid %s", folder_uid) + response = get_folder(folder_uid, grafana_url, http_post_headers, verify_ssl, client_cert, debug) + if isinstance(response[1], dict): + folder_data = response[1] + else: + folder_data = json.loads(response[1]) + + try: + return folder_data['id'] + except KeyError: + return 0 + else: + return 0 + + +def get_dashboard_versions(dashboard_id, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + (status_code, content) = send_grafana_get('{0}/api/dashboards/id/{1}/versions'.format(grafana_url, dashboard_id), http_get_headers, + verify_ssl, client_cert, debug) + logger.info("query dashboard versions: %s, status: %s", dashboard_id, status_code) + return (status_code, content) + + +def get_version(dashboard_id, version_number, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + (status_code, content) = send_grafana_get('{0}/api/dashboards/id/{1}/versions/{2}'.format(grafana_url, dashboard_id, version_number), http_get_headers, + verify_ssl, client_cert, debug) + logger.info("query dashboard %s version %s, status: %s", dashboard_id, version_number, status_code) + return (status_code, content) + + +def send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug): + + r = requests.get(url, headers=http_get_headers, verify=verify_ssl, cert=client_cert) + if debug: + log_response(r) + return (r.status_code, r.json()) + + +def send_grafana_post(url, json_payload, http_post_headers, verify_ssl=False, client_cert=None, debug=True): + r = requests.post(url, headers=http_post_headers, data=json_payload, verify=verify_ssl, cert=client_cert) + if debug: + log_response(r) + try: + return (r.status_code, r.json()) + except ValueError: + return (r.status_code, r.text) + + +def send_grafana_put(url, json_payload, http_post_headers, verify_ssl=False, client_cert=None, debug=True): + r = requests.put(url, headers=http_post_headers, data=json_payload, verify=verify_ssl, cert=client_cert) + if debug: + log_response(r) + return (r.status_code, r.json()) diff --git a/src/amg/azext_amg/restore.py b/src/amg/azext_amg/restore.py new file mode 100644 index 00000000000..d2cd8bdd1b8 --- /dev/null +++ b/src/amg/azext_amg/restore.py @@ -0,0 +1,52 @@ +from glob import glob +import tarfile +import tempfile +import collections + +from azure.cli.core.azclierror import ArgumentUsageError +from knack.log import get_logger + +from .create_folder import create_folder +from .create_dashboard import create_dashboard +from .create_snapshot import create_snapshot +from .create_annotation import create_annotation +from .create_datasource import create_datasource + +logger = get_logger(__name__) + + +def restore(grafana_url, archive_file, components, http_headers): + try: + tarfile.is_tarfile(name=archive_file) + except IOError as e: + raise ArgumentUsageError(f"failed to open {archive_file} as a tar file") from e + + # Shell game magic warning: restore_function keys require the 's' + # to be removed in order to match file extension names... + restore_functions = collections.OrderedDict() + restore_functions['folder'] = create_folder + restore_functions['dashboard'] = create_dashboard + restore_functions['snapshot'] = create_snapshot + restore_functions['annotation'] = create_annotation + restore_functions['datasource'] = create_datasource + + with tarfile.open(name=archive_file, mode='r:gz') as tar: + with tempfile.TemporaryDirectory() as tmpdir: + tar.extractall(tmpdir) + tar.close() + restore_components(grafana_url, restore_functions, tmpdir, components, http_headers) + + +def restore_components(grafana_url, restore_functions, tmpdir, components, http_headers): + + if components: + exts = [c[:-1] for c in components] + else: + exts = list(restore_functions.keys()) + if "folder" in exts: # make "folder" be the first to restore, so dashboards can be positioned under a right folder + exts.insert(0, exts.pop(exts.index("folder"))) + + for ext in exts: + for file_path in glob('{0}/**/*.{1}'.format(tmpdir, ext), recursive=True): + logger.warning('Restoring %s: %s', ext, file_path) + restore_functions[ext](grafana_url, file_path, http_headers) diff --git a/src/amg/azext_amg/save.py b/src/amg/azext_amg/save.py new file mode 100644 index 00000000000..af35db9105d --- /dev/null +++ b/src/amg/azext_amg/save.py @@ -0,0 +1,28 @@ +import datetime + +from .save_dashboards import save_dashboards +from .save_folders import save_folders +from .save_snapshots import save_snapshots +from .save_annotations import save_annotations +from .save_datasources import save_datasources +from .archive import archive + + +def save(grafana_url, backup_dir, components, http_headers): + backup_functions = {'dashboards': save_dashboards, + 'folders': save_folders, + 'snapshots': save_snapshots, + 'annotations': save_annotations, + 'datasources': save_datasources} + + timestamp = datetime.datetime.today().strftime('%Y%m%d%H%M') + if components: + # Backup only the components that provided via an argument + for backup_function in components: + backup_functions[backup_function](grafana_url, backup_dir, timestamp, http_headers) + else: + # Backup every component + for backup_function in backup_functions.values(): + backup_function(grafana_url, backup_dir, timestamp, http_headers) + + archive(backup_dir, timestamp) diff --git a/src/amg/azext_amg/save_annotations.py b/src/amg/azext_amg/save_annotations.py new file mode 100644 index 00000000000..ebdcf5e1d28 --- /dev/null +++ b/src/amg/azext_amg/save_annotations.py @@ -0,0 +1,47 @@ +import os +import time +from knack.log import get_logger +from .dashboardApi import search_annotations +from .commons import print_horizontal_line, save_json + +logger = get_logger(__name__) + + +def save_annotations(grafana_url, backup_dir, timestamp, http_headers): + folder_path = '{0}/annotations/{1}'.format(backup_dir, timestamp) + 'annotations_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + get_all_annotations_and_save(folder_path, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + print_horizontal_line() + + +def save_annotation(file_name, annotation_setting, folder_path, pretty_print): + file_path = save_json(file_name, annotation_setting, folder_path, 'annotation', pretty_print) + logger.warning("Annotation: %s is saved to %s", file_name, file_path) + + +def get_all_annotations_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): + now = int(round(time.time() * 1000)) + one_month_in_ms = 31 * 24 * 60 * 60 * 1000 + + ts_to = now + ts_from = now - one_month_in_ms + thirteen_months_retention = (now - (13 * one_month_in_ms)) + + while ts_from > thirteen_months_retention: + status_code_and_content = search_annotations(grafana_url, ts_from, ts_to, http_get_headers, verify_ssl, client_cert, debug) + if status_code_and_content[0] == 200: + annotations_batch = status_code_and_content[1] + logger.info("There are %s annotations:", len(annotations_batch)) + for annotation in annotations_batch: + logger.info(annotation) + save_annotation(str(annotation['id']), annotation, folder_path, pretty_print) + else: + logger.info("query annotation failed, status: %s, msg: %s", status_code_and_content[0], + status_code_and_content[1]) + + ts_to = ts_from + ts_from = ts_from - one_month_in_ms diff --git a/src/amg/azext_amg/save_dashboards.py b/src/amg/azext_amg/save_dashboards.py new file mode 100644 index 00000000000..a299812086e --- /dev/null +++ b/src/amg/azext_amg/save_dashboards.py @@ -0,0 +1,71 @@ +import os +from knack.log import get_logger +from .dashboardApi import search_dashboard, get_dashboard +from .commons import print_horizontal_line, save_json + +logger = get_logger(__name__) + + +def save_dashboards(grafana_url, backup_dir, timestamp, http_headers): + folder_path = '{0}/dashboards/{1}'.format(backup_dir, timestamp) + log_file = 'dashboards_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + save_dashboards_above_Ver6_2(folder_path, log_file, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + + +def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug): + (status, content) = search_dashboard(page, + limit, + grafana_url, + http_get_headers, + verify_ssl, client_cert, + debug) + if status == 200: + dashboards = content + logger.info("There are %s dashboards:", len(dashboards)) + for board in dashboards: + logger.info('name: %s', board['title']) + return dashboards + else: + logger.warning("Get dashboards failed, status: %s, msg: %s", status, content) + return [] + + +def save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folder_path, pretty_print): + file_path = save_json(file_name, dashboard_settings, folder_path, 'dashboard', pretty_print) + logger.warning("Dashboard: %s -> saved to: %s", dashboard_name, file_path) + + +def get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): + file_path = folder_path + '/' + log_file + if dashboards: + with open("{0}".format(file_path), 'w', encoding="utf8") as f: + for board in dashboards: + board_uri = "uid/{0}".format(board['uid']) + + (status, content) = get_dashboard(board_uri, grafana_url, http_get_headers, verify_ssl, client_cert, debug) + if status == 200: + save_dashboard_setting( + board['title'], + board_uri, + content, + folder_path, + pretty_print + ) + f.write('{0}\t{1}\n'.format(board_uri, board['title'])) + + +def save_dashboards_above_Ver6_2(folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): + limit = 5000 # limit is 5000 above V6.2+ + current_page = 1 + while True: + dashboards = get_all_dashboards_in_grafana(current_page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug) + print_horizontal_line() + if len(dashboards) == 0: + break + current_page += 1 + get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print) + print_horizontal_line() diff --git a/src/amg/azext_amg/save_datasources.py b/src/amg/azext_amg/save_datasources.py new file mode 100644 index 00000000000..27dc9ffc047 --- /dev/null +++ b/src/amg/azext_amg/save_datasources.py @@ -0,0 +1,35 @@ +import os +from knack.log import get_logger +from .dashboardApi import search_datasource +from .commons import print_horizontal_line, save_json + +logger = get_logger(__name__) + + +def save_datasources(grafana_url, backup_dir, timestamp, http_headers): + folder_path = '{0}/datasources/{1}'.format(backup_dir, timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + get_all_datasources_and_save(folder_path, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + print_horizontal_line() + + +def save_datasource(file_name, datasource_setting, folder_path, pretty_print): + file_path = save_json(file_name, datasource_setting, folder_path, 'datasource', pretty_print) + logger.warning("Datasource:%s is saved to %s", file_name, file_path) + + +def get_all_datasources_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): + status_code_and_content = search_datasource(grafana_url, http_get_headers, verify_ssl, client_cert, debug) + if status_code_and_content[0] == 200: + datasources = status_code_and_content[1] + logger.info("There are %s datasources:", len(datasources)) + for datasource in datasources: + logger.info(datasource) + datasource_name = datasource['uid'] + save_datasource(datasource_name, datasource, folder_path, pretty_print) + else: + logger.info("query datasource failed, status: %s, msg: %s", status_code_and_content[0], + status_code_and_content[1]) diff --git a/src/amg/azext_amg/save_folders.py b/src/amg/azext_amg/save_folders.py new file mode 100644 index 00000000000..6e9345a97d2 --- /dev/null +++ b/src/amg/azext_amg/save_folders.py @@ -0,0 +1,66 @@ +import os +from knack.log import get_logger +from .dashboardApi import search_folders, get_folder, get_folder_permissions +from .commons import print_horizontal_line, save_json + +logger = get_logger(__name__) + + +def save_folders(grafana_url, backup_dir, timestamp, http_headers): + folder_path = '{0}/folders/{1}'.format(backup_dir, timestamp) + log_file = 'folders_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + folders = get_all_folders_in_grafana(grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + print_horizontal_line() + get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None, uid_support=True) + print_horizontal_line() + + +def get_all_folders_in_grafana(grafana_url, http_get_headers, verify_ssl, client_cert, debug): + status_and_content_of_all_folders = search_folders(grafana_url, http_get_headers, verify_ssl, client_cert, debug) + status = status_and_content_of_all_folders[0] + content = status_and_content_of_all_folders[1] + if status == 200: + folders = content + logger.info("There are %s folders:", len(content)) + for folder in folders: + logger.info("name: %s", folder['title']) + return folders + else: + logger.warning("Get folders failed, status: %s, msg: %s", status, content) + return [] + + +def save_folder_setting(folder_name, file_name, folder_settings, folder_permissions, folder_path, pretty_print): + file_path = save_json(file_name, folder_settings, folder_path, 'folder', pretty_print) + logger.warning("Folder:%s are saved to %s", folder_name, file_path) + # NOTICE: The 'folder_permission' file extension had the 's' removed to work with the magical dict logic in restore.py... + file_path = save_json(file_name, folder_permissions, folder_path, 'folder_permission', pretty_print) + logger.warning("Folder permissions:%s are saved to %s", folder_name, file_path) + + +def get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print, uid_support): + file_path = folder_path + '/' + log_file + with open("{0}".format(file_path), 'w+', encoding="utf8") as f: + for folder in folders: + if uid_support: + folder_uri = "uid/{0}".format(folder['uid']) + else: + folder_uri = folder['uri'] + + (status_folder_settings, content_folder_settings) = get_folder(folder['uid'], grafana_url, http_get_headers, verify_ssl, client_cert, debug) + (status_folder_permissions, content_folder_permissions) = get_folder_permissions(folder['uid'], grafana_url, http_get_headers, verify_ssl, client_cert, debug) + + if status_folder_settings == 200 and status_folder_permissions == 200: + save_folder_setting( + folder['title'], + folder_uri, + content_folder_settings, + content_folder_permissions, + folder_path, + pretty_print + ) + f.write('{0}\t{1}\n'.format(folder_uri, folder['title'])) diff --git a/src/amg/azext_amg/save_snapshots.py b/src/amg/azext_amg/save_snapshots.py new file mode 100644 index 00000000000..15599d2bbd0 --- /dev/null +++ b/src/amg/azext_amg/save_snapshots.py @@ -0,0 +1,47 @@ +import os +import random +import string +from knack.log import get_logger +from .dashboardApi import search_snapshot, get_snapshot +from .commons import print_horizontal_line, save_json + +logger = get_logger(__name__) + + +def save_snapshots(grafana_url, backup_dir, timestamp, http_headers): + folder_path = '{0}/snapshots/{1}'.format(backup_dir, timestamp) + 'snapshots_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + print_horizontal_line() + + +def save_snapshot(file_name, snapshot_setting, folder_path, pretty_print): + file_name = file_name.replace('/', '_') + random_suffix = "".join(random.choice(string.ascii_letters) for _ in range(6)) + file_path = save_json(file_name + "_" + random_suffix, snapshot_setting, folder_path, 'snapshot', pretty_print) + logger.warning("Snapshot:%s is saved to %s", file_name, file_path) + + +def get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, verify_ssl, client_cert, debug, folder_path, pretty_print): + (status, content) = get_snapshot(snapshot['key'], grafana_url, http_get_headers, verify_ssl, client_cert, debug) + if status == 200: + save_snapshot(snapshot['name'], content, folder_path, pretty_print) + else: + logger.warning("Getting snapshot %s failed with %s", snapshot['name'], status) + + +def get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): + status_code_and_content = search_snapshot(grafana_url, http_get_headers, verify_ssl, client_cert, debug) + if status_code_and_content[0] == 200: + snapshots = status_code_and_content[1] + logger.info("There are %s snapshots:", len(snapshots)) + for snapshot in snapshots: + logger.info(snapshot) + get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, verify_ssl, client_cert, debug, folder_path, pretty_print) + else: + logger.warning("Query snapshot failed, status: %s, msg: %s", status_code_and_content[0], + status_code_and_content[1]) From 4aae1314824806763c2a181788afa0b3585210b0 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 26 Feb 2023 21:03:04 -0800 Subject: [PATCH 02/19] add release notes --- src/amg/HISTORY.rst | 5 +++++ src/amg/setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/amg/HISTORY.rst b/src/amg/HISTORY.rst index e19fe1b4b67..54b63e31295 100644 --- a/src/amg/HISTORY.rst +++ b/src/amg/HISTORY.rst @@ -31,3 +31,8 @@ Release History ++++++ * `az grafana update`: support email through new SMTP configuration arguments +1.2 ++++++ +* `az grafana backup`: backup a grafana workspace +* `az grafana restore`: restore a grafana workspace +* `az grafana dashboard sync`: sync dashboard between 2 grafana workspaces \ No newline at end of file diff --git a/src/amg/setup.py b/src/amg/setup.py index 4a6e9f39a44..7953e699f02 100644 --- a/src/amg/setup.py +++ b/src/amg/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '1.1.0' +VERSION = '1.2.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From 016d6bf03b8d861271f2a22fb1381c25e2149b3c Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Thu, 2 Mar 2023 22:29:46 -0800 Subject: [PATCH 03/19] bug fixes: better output and support folder inclusion --- src/amg/azext_amg/_help.py | 36 +++++++++++++------------- src/amg/azext_amg/_params.py | 19 ++++++-------- src/amg/azext_amg/commons.py | 8 ------ src/amg/azext_amg/create_annotation.py | 3 ++- src/amg/azext_amg/create_dashboard.py | 3 ++- src/amg/azext_amg/create_datasource.py | 3 ++- src/amg/azext_amg/create_folder.py | 3 ++- src/amg/azext_amg/create_snapshot.py | 6 ++--- src/amg/azext_amg/custom.py | 10 +++---- src/amg/azext_amg/restore.py | 2 +- src/amg/azext_amg/save_dashboards.py | 5 ++-- src/amg/azext_amg/save_folders.py | 5 ++-- 12 files changed, 46 insertions(+), 57 deletions(-) diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index 88723b60c14..d3c6bfbe1a4 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -55,24 +55,6 @@ az grafana update -g MyResourceGroup -n MyGrafana --smtp enabled --from-address johndoe@outlook.com --from-name john --host "smtp.mailgun.org:587" --user "postmaster@sandbox12345.mailgun.org" --password "password" --start-tls-policy OpportunisticStartTLS --skip-verify true """ -helps['grafana dashboard sync'] = """ - type: command - short-summary: Sync Azure Managed Grafana dashboards from one instance to another instance. - examples: - - name: Sync with a few folders skipped - text: | - az grafana dashboard sync - --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source - --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination - --skip-folders "Azure Monitor Container Insights" "Azure Monitor" - - name: Preview the sync - text: | - az grafana sync - --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source - --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination - --dry-run -""" - helps['grafana data-source'] = """ type: group short-summary: Commands to manage data sources of an instance. @@ -247,6 +229,24 @@ az grafana dashboard delete -g MyResourceGroup -n MyGrafana --dashboard VdrOA7jGz """ +helps['grafana dashboard sync'] = """ + type: command + short-summary: Sync Azure Managed Grafana dashboards from one instance to another instance. Note, dashboards with "provisioned" state will be skipped due to being read-only + examples: + - name: Sync only dashboardss under a few folders + text: | + az grafana dashboard sync + --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source + --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination + --folders "Azure Monitor Container Insights" "Azure Monitor" + - name: Preview the sync + text: | + az grafana sync + --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source + --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination + --dry-run +""" + helps['grafana folder'] = """ type: group short-summary: Commands to manage folders of an instance. diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index 26fc9d883b3..78b7e459d97 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -53,17 +53,6 @@ def load_arguments(self, _): c.argument("start_tls_policy", get_enum_type(["OpportunisticStartTLS", "MandatoryStartTLS", "NoStartTLS"]), arg_group='SMTP', help="TLS policy") c.argument("skip_verify", arg_group='SMTP', arg_type=get_three_state_flag(), help="Skip verifying SSL for SMTP server") - with self.argument_context("grafana dashboard sync") as c: - c.argument("source", options_list=["--source", "-s"], help="resource id of the source workspace") - c.argument("destination", options_list=["--destination", "-d"], help="resource id of the destination workspace") - c.argument("dry_run", arg_type=get_three_state_flag(), help="preview changes w/o committing") - c.argument("skip_folders", nargs="+", help="space separated folder list which sync command shall skip") - c.argument("data_source_uid_mappings", options_list=["--data-source-uid-mappings", "-m"], nargs="+", - help="space seperated key vaule pairs that 'sync' command can link to new data sources at destination workspace, e.g. --data-source-uid-mappings datasource-1=datasource-2") - - with self.argument_context("grafana sync") as c: - c.argument("sync_data_sources", arg_type=get_three_state_flag(), help="sync up data sources. default: false") - with self.argument_context("grafana backup") as c: c.argument("directory", options_list=["-d", "--directory"], help="directory to backup Grafana artifacts") @@ -84,6 +73,14 @@ def load_arguments(self, _): with self.argument_context("grafana dashboard import") as c: c.argument("definition", help="The complete dashboard model in json string, Grafana gallery id, a path or url to a file with such content") + with self.argument_context("grafana dashboard sync") as c: + c.argument("source", options_list=["--source", "-s"], help="resource id of the source workspace") + c.argument("destination", options_list=["--destination", "-d"], help="resource id of the destination workspace") + c.argument("dry_run", arg_type=get_three_state_flag(), help="preview changes w/o committing") + c.argument("folders", nargs="+", help="space separated folder list which sync command shall handle dashboards underneath") + c.argument("data_source_uid_mappings", options_list=["--data-source-uid-mappings", "-m"], nargs="+", + help="space seperated key vaule pairs that 'sync' command can link to new data sources at destination workspace, e.g. --data-source-uid-mappings datasource-1=datasource-2") + with self.argument_context("grafana") as c: c.argument("time_to_live", default="1d", help="The life duration. For example, 1d if your key is going to last fr one day. Supported units are: s,m,h,d,w,M,y") diff --git a/src/amg/azext_amg/commons.py b/src/amg/azext_amg/commons.py index 7c7aa9c15fd..2ea3ce06727 100644 --- a/src/amg/azext_amg/commons.py +++ b/src/amg/azext_amg/commons.py @@ -1,5 +1,4 @@ import re -import sys import json from knack.log import get_logger @@ -23,13 +22,6 @@ def log_response(resp): return resp -def to_python2_and_3_compatible_string(some_string): - if sys.version_info[0] > 2: - return some_string - else: - return some_string.encode('utf8') - - def save_json(file_name, data, folder_path, extension, pretty_print): pattern = "^db/|^uid/" if re.match(pattern, file_name): diff --git a/src/amg/azext_amg/create_annotation.py b/src/amg/azext_amg/create_annotation.py index 633ce91ce56..82366c1d54d 100644 --- a/src/amg/azext_amg/create_annotation.py +++ b/src/amg/azext_amg/create_annotation.py @@ -11,7 +11,8 @@ def create_annotation(grafana_url, file_path, http_headers): annotation = json.loads(data) result = _create_annotation(json.dumps(annotation), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - logger.info("create annotation: %s, status: %s, msg: %s", annotation['id'], result[0], result[1]) + logger.warning("Create annotation %s. (%s)", annotation['id'], "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) def _create_annotation(annotation, grafana_url, http_post_headers, verify_ssl, client_cert, debug): diff --git a/src/amg/azext_amg/create_dashboard.py b/src/amg/azext_amg/create_dashboard.py index 3253d77c434..c2024e0d178 100644 --- a/src/amg/azext_amg/create_dashboard.py +++ b/src/amg/azext_amg/create_dashboard.py @@ -20,7 +20,8 @@ def create_dashboard(grafana_url, file_path, http_headers): result = _create_dashboard(json.dumps(payload), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) dashboard_title = content['dashboard'].get('title', '') - logger.info("create dashboard %s response status: %s, msg: %s", dashboard_title, result[0], result[1]) + logger.warning("Create dashboard %s. (%s)", dashboard_title, "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) def _create_dashboard(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): diff --git a/src/amg/azext_amg/create_datasource.py b/src/amg/azext_amg/create_datasource.py index 37df8e7e836..4416eded3aa 100644 --- a/src/amg/azext_amg/create_datasource.py +++ b/src/amg/azext_amg/create_datasource.py @@ -11,7 +11,8 @@ def create_datasource(grafana_url, file_path, http_headers): datasource = json.loads(data) result = _create_datasource(json.dumps(datasource), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - logger.info("create datasource: %s, status: %s, msg: %s", datasource['name'], result[0], result[1]) + logger.warning("Create datasource %s. (%s)", datasource['name'], "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) def _create_datasource(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): diff --git a/src/amg/azext_amg/create_folder.py b/src/amg/azext_amg/create_folder.py index 73a1cd21268..0ac72f66e10 100644 --- a/src/amg/azext_amg/create_folder.py +++ b/src/amg/azext_amg/create_folder.py @@ -11,7 +11,8 @@ def create_folder(grafana_url, file_path, http_headers): folder = json.loads(data) result = _create_folder(json.dumps(folder), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - logger.info("create folder %s, status: %s, msg: %s\n", folder.get('title', ''), result[0], result[1]) + logger.warning("Create folder %s. (%s)", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) def _create_folder(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): diff --git a/src/amg/azext_amg/create_snapshot.py b/src/amg/azext_amg/create_snapshot.py index ba69411a51a..583d1e4389e 100644 --- a/src/amg/azext_amg/create_snapshot.py +++ b/src/amg/azext_amg/create_snapshot.py @@ -16,10 +16,8 @@ def create_snapshot(grafana_url, file_path, http_headers): snapshot['name'] = "Untitled Snapshot" (status, content) = _create_snapshot(json.dumps(snapshot), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - if status == 200: - logger.info("create snapshot: %s, status: %s, msg: %s", snapshot['name'], status, content) - else: - logger.info("creating snapshot %s failed with status %s", snapshot['name'], status) + logger.warning("Create snapshot %s. (%s)", snapshot['name'], "SUCCESS" if status == 200 else "FAILURE") + logger.info("status: %s, msg: %s", status, content) def _create_snapshot(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index d53b9f664cd..877666dbb57 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -254,7 +254,7 @@ def restore_grafana(cmd, grafana_name, archive_file, components=None, resource_g http_headers=headers) -def sync_dashboard(cmd, source, destination, skip_folders=None, dry_run=None): +def sync_dashboard(cmd, source, destination, folders=None, dry_run=None): # pylint: disable=too-many-locals, too-many-branches, too-many-statements if not is_valid_resource_id(source): raise ArgumentUsageError(f"'{source}' isn't a valid resource id, please refer to example commands in help") @@ -262,7 +262,7 @@ def sync_dashboard(cmd, source, destination, skip_folders=None, dry_run=None): raise ArgumentUsageError(f"'{destination}' isn't a valid resource id, please refer to example commands in help") if source.lower() == destination.lower(): - raise ArgumentUsageError(f"Destination workspace should be different from the source workspace") + raise ArgumentUsageError("Destination workspace should be different from the source workspace") parsed_source = parse_resource_id(source) parsed_destination = parse_resource_id(destination) @@ -295,7 +295,7 @@ def sync_dashboard(cmd, source, destination, skip_folders=None, dry_run=None): source_dashboards = list_dashboards(cmd, source_workspace, resource_group_name=source_resource_group, subscription=source_subscription) - skip_folders = skip_folders or [] + folders = folders or [] summary = { "folders_created": [], "dashboards_synced": [], @@ -309,8 +309,8 @@ def sync_dashboard(cmd, source, destination, skip_folders=None, dry_run=None): subscription=source_subscription) folder_title = source_dashboard["meta"]["folderTitle"] dashboard_path = folder_title + "/" + source_dashboard["dashboard"]["title"] - under_skip_folders = bool(next((f for f in skip_folders if folder_title.lower() == f.lower()), None)) - if source_dashboard["meta"].get("provisioned") or under_skip_folders: + if (source_dashboard["meta"].get("provisioned") or + (folders and not bool(next((f for f in folders if folder_title.lower() == f.lower()), None)))): summary["dashboards_skipped"].append(dashboard_path) continue diff --git a/src/amg/azext_amg/restore.py b/src/amg/azext_amg/restore.py index d2cd8bdd1b8..c355f46d881 100644 --- a/src/amg/azext_amg/restore.py +++ b/src/amg/azext_amg/restore.py @@ -48,5 +48,5 @@ def restore_components(grafana_url, restore_functions, tmpdir, components, http_ for ext in exts: for file_path in glob('{0}/**/*.{1}'.format(tmpdir, ext), recursive=True): - logger.warning('Restoring %s: %s', ext, file_path) + logger.info('Restoring %s: %s', ext, file_path) restore_functions[ext](grafana_url, file_path, http_headers) diff --git a/src/amg/azext_amg/save_dashboards.py b/src/amg/azext_amg/save_dashboards.py index a299812086e..e82eccec80f 100644 --- a/src/amg/azext_amg/save_dashboards.py +++ b/src/amg/azext_amg/save_dashboards.py @@ -29,9 +29,8 @@ def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers, ve for board in dashboards: logger.info('name: %s', board['title']) return dashboards - else: - logger.warning("Get dashboards failed, status: %s, msg: %s", status, content) - return [] + logger.warning("Get dashboards failed, status: %s, msg: %s", status, content) + return [] def save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folder_path, pretty_print): diff --git a/src/amg/azext_amg/save_folders.py b/src/amg/azext_amg/save_folders.py index 6e9345a97d2..db7fbd0fd15 100644 --- a/src/amg/azext_amg/save_folders.py +++ b/src/amg/azext_amg/save_folders.py @@ -29,9 +29,8 @@ def get_all_folders_in_grafana(grafana_url, http_get_headers, verify_ssl, client for folder in folders: logger.info("name: %s", folder['title']) return folders - else: - logger.warning("Get folders failed, status: %s, msg: %s", status, content) - return [] + logger.warning("Get folders failed, status: %s, msg: %s", status, content) + return [] def save_folder_setting(folder_name, file_name, folder_settings, folder_permissions, folder_path, pretty_print): From bac407a2a3fcec0712200ce5289fafce3d6017dd Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Fri, 3 Mar 2023 16:59:29 -0800 Subject: [PATCH 04/19] add include, exclude, and more output polishing --- src/amg/azext_amg/_help.py | 2 +- src/amg/azext_amg/_params.py | 2 ++ src/amg/azext_amg/archive.py | 4 +-- src/amg/azext_amg/create_annotation.py | 2 +- src/amg/azext_amg/create_dashboard.py | 2 +- src/amg/azext_amg/create_datasource.py | 2 +- src/amg/azext_amg/create_folder.py | 2 +- src/amg/azext_amg/create_snapshot.py | 2 +- src/amg/azext_amg/custom.py | 41 +++++++++++++++++++------- src/amg/azext_amg/save.py | 8 ++--- src/amg/azext_amg/save_annotations.py | 9 +++--- src/amg/azext_amg/save_dashboards.py | 22 ++++++++++---- src/amg/azext_amg/save_datasources.py | 7 +++-- src/amg/azext_amg/save_folders.py | 21 ++++++++++--- src/amg/azext_amg/save_snapshots.py | 7 +++-- 15 files changed, 92 insertions(+), 41 deletions(-) diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index d3c6bfbe1a4..21a2ea61391 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -238,7 +238,7 @@ az grafana dashboard sync --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination - --folders "Azure Monitor Container Insights" "Azure Monitor" + --folders-to-include "Azure Monitor Container Insights" "Azure Monitor" - name: Preview the sync text: | az grafana sync diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index 78b7e459d97..ec3c9231e2f 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -28,6 +28,8 @@ def load_arguments(self, _): c.argument("api_key_or_token", options_list=["--api-key", "--token", '-t'], help="api key or service account token, a randomly generated string used to interact with Grafana endpoint; if missing, CLI will use logon user's credentials") c.argument("components", get_enum_type(["dashboards", "datasources", "folders", "snapshots", "annotations"]), nargs='+', options_list=["-c", "--components"], help="grafana artifact types to backup") + c.argument("folders_to_include", nargs='+', options_list=["-i", "--folders-to-include"], help="folders to include in backup or sync") + c.argument("folders_to_exclude", nargs='+', options_list=["-e", "--folders-to-exclude"], help="folders to exclude in backup or sync") c.ignore("subscription") # a help argument with self.argument_context("grafana create") as c: diff --git a/src/amg/azext_amg/archive.py b/src/amg/azext_amg/archive.py index dcbbb0e5f81..790b3ce0017 100644 --- a/src/amg/azext_amg/archive.py +++ b/src/amg/azext_amg/archive.py @@ -7,8 +7,8 @@ logger = get_logger(__name__) -def archive(backup_dir, timestamp): - archive_file = '{0}/{1}.tar.gz'.format(backup_dir, timestamp) +def archive(grafana_name, backup_dir, timestamp): + archive_file = '{0}/{1}-{2}.tar.gz'.format(backup_dir, grafana_name, timestamp) backup_files = [] for folder_name in ['folders', 'datasources', 'dashboards', 'alert_channels', 'organizations', 'users', 'snapshots', 'versions', 'annotations']: diff --git a/src/amg/azext_amg/create_annotation.py b/src/amg/azext_amg/create_annotation.py index 82366c1d54d..1b9b3273a6a 100644 --- a/src/amg/azext_amg/create_annotation.py +++ b/src/amg/azext_amg/create_annotation.py @@ -11,7 +11,7 @@ def create_annotation(grafana_url, file_path, http_headers): annotation = json.loads(data) result = _create_annotation(json.dumps(annotation), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - logger.warning("Create annotation %s. (%s)", annotation['id'], "SUCCESS" if result[0] == 200 else "FAILURE") + logger.warning("Create annotation \"%s\". %s", annotation['id'], "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) diff --git a/src/amg/azext_amg/create_dashboard.py b/src/amg/azext_amg/create_dashboard.py index c2024e0d178..12675a18a89 100644 --- a/src/amg/azext_amg/create_dashboard.py +++ b/src/amg/azext_amg/create_dashboard.py @@ -20,7 +20,7 @@ def create_dashboard(grafana_url, file_path, http_headers): result = _create_dashboard(json.dumps(payload), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) dashboard_title = content['dashboard'].get('title', '') - logger.warning("Create dashboard %s. (%s)", dashboard_title, "SUCCESS" if result[0] == 200 else "FAILURE") + logger.warning("Create dashboard \"%s\". %s", dashboard_title, "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) diff --git a/src/amg/azext_amg/create_datasource.py b/src/amg/azext_amg/create_datasource.py index 4416eded3aa..fbb536e1fc9 100644 --- a/src/amg/azext_amg/create_datasource.py +++ b/src/amg/azext_amg/create_datasource.py @@ -11,7 +11,7 @@ def create_datasource(grafana_url, file_path, http_headers): datasource = json.loads(data) result = _create_datasource(json.dumps(datasource), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - logger.warning("Create datasource %s. (%s)", datasource['name'], "SUCCESS" if result[0] == 200 else "FAILURE") + logger.warning("Create datasource \"%s\". %s", datasource['name'], "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) diff --git a/src/amg/azext_amg/create_folder.py b/src/amg/azext_amg/create_folder.py index 0ac72f66e10..27d1fb7e851 100644 --- a/src/amg/azext_amg/create_folder.py +++ b/src/amg/azext_amg/create_folder.py @@ -11,7 +11,7 @@ def create_folder(grafana_url, file_path, http_headers): folder = json.loads(data) result = _create_folder(json.dumps(folder), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - logger.warning("Create folder %s. (%s)", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") + logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) diff --git a/src/amg/azext_amg/create_snapshot.py b/src/amg/azext_amg/create_snapshot.py index 583d1e4389e..4191a164152 100644 --- a/src/amg/azext_amg/create_snapshot.py +++ b/src/amg/azext_amg/create_snapshot.py @@ -16,7 +16,7 @@ def create_snapshot(grafana_url, file_path, http_headers): snapshot['name'] = "Untitled Snapshot" (status, content) = _create_snapshot(json.dumps(snapshot), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) - logger.warning("Create snapshot %s. (%s)", snapshot['name'], "SUCCESS" if status == 200 else "FAILURE") + logger.warning("Create snapshot \"%s\". %s", snapshot['name'], "SUCCESS" if status == 200 else "FAILURE") logger.info("status: %s, msg: %s", status, content) diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 877666dbb57..18514cea0e3 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -225,7 +225,7 @@ def delete_grafana(cmd, grafana_name, resource_group_name=None): _delete_role_assignment(cmd.cli_ctx, grafana.identity.principal_id) -def backup_grafana(cmd, grafana_name, components=None, directory=None, resource_group_name=None): +def backup_grafana(cmd, grafana_name, components=None, directory=None, folders_to_include=None, folders_to_exclude=None, resource_group_name=None): import os from pathlib import Path from .save import save @@ -235,10 +235,13 @@ def backup_grafana(cmd, grafana_name, components=None, directory=None, resource_ "authorization": "Bearer " + creds[1] } - save(grafana_url=_get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription=None), + save(grafana_name=grafana_name, + grafana_url=_get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription=None), backup_dir=directory or os.path.join(Path.cwd(), "_backup"), components=components, - http_headers=headers) + http_headers=headers, + folders_to_include=folders_to_include, + folders_to_exclude=folders_to_exclude) def restore_grafana(cmd, grafana_name, archive_file, components=None, resource_group_name=None): @@ -254,7 +257,7 @@ def restore_grafana(cmd, grafana_name, archive_file, components=None, resource_g http_headers=headers) -def sync_dashboard(cmd, source, destination, folders=None, dry_run=None): +def sync_dashboard(cmd, source, destination, folders_to_include=None, folders_to_exclude=None, dry_run=None): # pylint: disable=too-many-locals, too-many-branches, too-many-statements if not is_valid_resource_id(source): raise ArgumentUsageError(f"'{source}' isn't a valid resource id, please refer to example commands in help") @@ -295,7 +298,6 @@ def sync_dashboard(cmd, source, destination, folders=None, dry_run=None): source_dashboards = list_dashboards(cmd, source_workspace, resource_group_name=source_resource_group, subscription=source_subscription) - folders = folders or [] summary = { "folders_created": [], "dashboards_synced": [], @@ -309,8 +311,17 @@ def sync_dashboard(cmd, source, destination, folders=None, dry_run=None): subscription=source_subscription) folder_title = source_dashboard["meta"]["folderTitle"] dashboard_path = folder_title + "/" + source_dashboard["dashboard"]["title"] - if (source_dashboard["meta"].get("provisioned") or - (folders and not bool(next((f for f in folders if folder_title.lower() == f.lower()), None)))): + + should_skip = False + if source_dashboard["meta"].get("provisioned"): + should_skip = True + else: + if folders_to_include: + should_skip = not next((f for f in folders_to_include if folder_title.lower() == f.lower()), None) + if not should_skip and folders_to_exclude: + should_skip = next((f for f in folders_to_exclude if folder_title.lower() == f.lower()), None) + + if should_skip: summary["dashboards_skipped"].append(dashboard_path) continue @@ -393,9 +404,19 @@ def show_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_ def list_dashboards(cmd, grafana_name, resource_group_name=None, api_key_or_token=None, subscription=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/search?type=dash-db", - api_key_or_token=api_key_or_token, subscription=subscription) - return json.loads(response.content) + limit = 5000 + current_page = 1 + dashboards = [] + while True: + response = _send_request(cmd, resource_group_name, grafana_name, "get", + "/api/search?type=dash-db&limit={0}&page={1}".format(limit, current_page), + api_key_or_token=api_key_or_token, subscription=subscription) + temp = json.loads(response.content) + dashboards += temp + if len(temp) == 0: + break + current_page += 1 + return dashboards def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, resource_group_name=None, diff --git a/src/amg/azext_amg/save.py b/src/amg/azext_amg/save.py index af35db9105d..b25b0f3a77b 100644 --- a/src/amg/azext_amg/save.py +++ b/src/amg/azext_amg/save.py @@ -8,7 +8,7 @@ from .archive import archive -def save(grafana_url, backup_dir, components, http_headers): +def save(grafana_name, grafana_url, backup_dir, components, http_headers, **kwargs): backup_functions = {'dashboards': save_dashboards, 'folders': save_folders, 'snapshots': save_snapshots, @@ -19,10 +19,10 @@ def save(grafana_url, backup_dir, components, http_headers): if components: # Backup only the components that provided via an argument for backup_function in components: - backup_functions[backup_function](grafana_url, backup_dir, timestamp, http_headers) + backup_functions[backup_function](grafana_url, backup_dir, timestamp, http_headers, **kwargs) else: # Backup every component for backup_function in backup_functions.values(): - backup_function(grafana_url, backup_dir, timestamp, http_headers) + backup_function(grafana_url, backup_dir, timestamp, http_headers, **kwargs) - archive(backup_dir, timestamp) + archive(grafana_name, backup_dir, timestamp) diff --git a/src/amg/azext_amg/save_annotations.py b/src/amg/azext_amg/save_annotations.py index ebdcf5e1d28..7749b7041d7 100644 --- a/src/amg/azext_amg/save_annotations.py +++ b/src/amg/azext_amg/save_annotations.py @@ -7,7 +7,7 @@ logger = get_logger(__name__) -def save_annotations(grafana_url, backup_dir, timestamp, http_headers): +def save_annotations(grafana_url, backup_dir, timestamp, http_headers, **kwargs): folder_path = '{0}/annotations/{1}'.format(backup_dir, timestamp) 'annotations_{0}.txt'.format(timestamp) @@ -20,7 +20,8 @@ def save_annotations(grafana_url, backup_dir, timestamp, http_headers): def save_annotation(file_name, annotation_setting, folder_path, pretty_print): file_path = save_json(file_name, annotation_setting, folder_path, 'annotation', pretty_print) - logger.warning("Annotation: %s is saved to %s", file_name, file_path) + logger.warning("Annotation: \"%s\" is saved", annotation_setting.get('text')) + logger.info(" -> %s", file_path) def get_all_annotations_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): @@ -40,8 +41,8 @@ def get_all_annotations_and_save(folder_path, grafana_url, http_get_headers, ver logger.info(annotation) save_annotation(str(annotation['id']), annotation, folder_path, pretty_print) else: - logger.info("query annotation failed, status: %s, msg: %s", status_code_and_content[0], - status_code_and_content[1]) + logger.warning("Query annotation FAILED, status: %s, msg: %s", status_code_and_content[0], + status_code_and_content[1]) ts_to = ts_from ts_from = ts_from - one_month_in_ms diff --git a/src/amg/azext_amg/save_dashboards.py b/src/amg/azext_amg/save_dashboards.py index e82eccec80f..1a064034088 100644 --- a/src/amg/azext_amg/save_dashboards.py +++ b/src/amg/azext_amg/save_dashboards.py @@ -6,14 +6,14 @@ logger = get_logger(__name__) -def save_dashboards(grafana_url, backup_dir, timestamp, http_headers): +def save_dashboards(grafana_url, backup_dir, timestamp, http_headers, **kwargs): folder_path = '{0}/dashboards/{1}'.format(backup_dir, timestamp) log_file = 'dashboards_{0}.txt'.format(timestamp) if not os.path.exists(folder_path): os.makedirs(folder_path) - save_dashboards_above_Ver6_2(folder_path, log_file, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + _save_dashboards(folder_path, log_file, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None, **kwargs) def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug): @@ -29,13 +29,14 @@ def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers, ve for board in dashboards: logger.info('name: %s', board['title']) return dashboards - logger.warning("Get dashboards failed, status: %s, msg: %s", status, content) + logger.warning("Get dashboards FAILED, status: %s, msg: %s", status, content) return [] def save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folder_path, pretty_print): file_path = save_json(file_name, dashboard_settings, folder_path, 'dashboard', pretty_print) - logger.warning("Dashboard: %s -> saved to: %s", dashboard_name, file_path) + logger.warning("Dashboard: \"%s\" is saved", dashboard_name) + logger.info(" -> %s", file_path) def get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): @@ -57,11 +58,22 @@ def get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, f.write('{0}\t{1}\n'.format(board_uri, board['title'])) -def save_dashboards_above_Ver6_2(folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): +def _save_dashboards(folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print, **kwargs): limit = 5000 # limit is 5000 above V6.2+ current_page = 1 while True: dashboards = get_all_dashboards_in_grafana(current_page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug) + + # only include what users want + folders_to_include = kwargs.get('folders_to_include') + folders_to_exclude = kwargs.get('folders_to_exclude') + if folders_to_include: + folders_to_include = [f.lower() for f in folders_to_include] + dashboards = [d for d in dashboards if d.get('folderTitle', '').lower() in folders_to_include] + if folders_to_exclude: + folders_to_exclude = [f.lower() for f in folders_to_exclude] + dashboards = [d for d in dashboards if d.get('folderTitle', '').lower() not in folders_to_exclude] + print_horizontal_line() if len(dashboards) == 0: break diff --git a/src/amg/azext_amg/save_datasources.py b/src/amg/azext_amg/save_datasources.py index 27dc9ffc047..da4a755bea1 100644 --- a/src/amg/azext_amg/save_datasources.py +++ b/src/amg/azext_amg/save_datasources.py @@ -6,7 +6,7 @@ logger = get_logger(__name__) -def save_datasources(grafana_url, backup_dir, timestamp, http_headers): +def save_datasources(grafana_url, backup_dir, timestamp, http_headers, **kwargs): folder_path = '{0}/datasources/{1}'.format(backup_dir, timestamp) if not os.path.exists(folder_path): @@ -18,7 +18,8 @@ def save_datasources(grafana_url, backup_dir, timestamp, http_headers): def save_datasource(file_name, datasource_setting, folder_path, pretty_print): file_path = save_json(file_name, datasource_setting, folder_path, 'datasource', pretty_print) - logger.warning("Datasource:%s is saved to %s", file_name, file_path) + logger.warning("Datasource: \"%s\" is saved", datasource_setting['name']) + logger.info(" -> %s", file_path) def get_all_datasources_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): @@ -31,5 +32,5 @@ def get_all_datasources_and_save(folder_path, grafana_url, http_get_headers, ver datasource_name = datasource['uid'] save_datasource(datasource_name, datasource, folder_path, pretty_print) else: - logger.info("query datasource failed, status: %s, msg: %s", status_code_and_content[0], + logger.info("Query datasource FAILED, status: %s, msg: %s", status_code_and_content[0], status_code_and_content[1]) diff --git a/src/amg/azext_amg/save_folders.py b/src/amg/azext_amg/save_folders.py index db7fbd0fd15..ff314eb2d43 100644 --- a/src/amg/azext_amg/save_folders.py +++ b/src/amg/azext_amg/save_folders.py @@ -6,7 +6,7 @@ logger = get_logger(__name__) -def save_folders(grafana_url, backup_dir, timestamp, http_headers): +def save_folders(grafana_url, backup_dir, timestamp, http_headers, **kwargs): folder_path = '{0}/folders/{1}'.format(backup_dir, timestamp) log_file = 'folders_{0}.txt'.format(timestamp) @@ -14,6 +14,17 @@ def save_folders(grafana_url, backup_dir, timestamp, http_headers): os.makedirs(folder_path) folders = get_all_folders_in_grafana(grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + + # only include what users want + folders_to_include = kwargs.get('folders_to_include') + folders_to_exclude = kwargs.get('folders_to_exclude') + if folders_to_include: + folders_to_include = [f.lower() for f in folders_to_include] + folders = [f for f in folders if f.get('title', '').lower() in folders_to_include] + if folders_to_exclude: + folders_to_exclude = [f.lower() for f in folders_to_exclude] + folders = [f for f in folders if f.get('title', '').lower() not in folders_to_exclude] + print_horizontal_line() get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None, uid_support=True) print_horizontal_line() @@ -29,16 +40,18 @@ def get_all_folders_in_grafana(grafana_url, http_get_headers, verify_ssl, client for folder in folders: logger.info("name: %s", folder['title']) return folders - logger.warning("Get folders failed, status: %s, msg: %s", status, content) + logger.warning("Get folders FAILED, status: %s, msg: %s", status, content) return [] def save_folder_setting(folder_name, file_name, folder_settings, folder_permissions, folder_path, pretty_print): file_path = save_json(file_name, folder_settings, folder_path, 'folder', pretty_print) - logger.warning("Folder:%s are saved to %s", folder_name, file_path) + logger.warning("Folder: \"%s\" is saved", folder_name) + logger.info(" -> %s", file_path) # NOTICE: The 'folder_permission' file extension had the 's' removed to work with the magical dict logic in restore.py... file_path = save_json(file_name, folder_permissions, folder_path, 'folder_permission', pretty_print) - logger.warning("Folder permissions:%s are saved to %s", folder_name, file_path) + logger.warning("Folder permissions: %s are saved", folder_name) + logger.info(" -> %s", file_path) def get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print, uid_support): diff --git a/src/amg/azext_amg/save_snapshots.py b/src/amg/azext_amg/save_snapshots.py index 15599d2bbd0..195c90cd657 100644 --- a/src/amg/azext_amg/save_snapshots.py +++ b/src/amg/azext_amg/save_snapshots.py @@ -8,7 +8,7 @@ logger = get_logger(__name__) -def save_snapshots(grafana_url, backup_dir, timestamp, http_headers): +def save_snapshots(grafana_url, backup_dir, timestamp, http_headers, **kwargs): folder_path = '{0}/snapshots/{1}'.format(backup_dir, timestamp) 'snapshots_{0}.txt'.format(timestamp) @@ -23,7 +23,8 @@ def save_snapshot(file_name, snapshot_setting, folder_path, pretty_print): file_name = file_name.replace('/', '_') random_suffix = "".join(random.choice(string.ascii_letters) for _ in range(6)) file_path = save_json(file_name + "_" + random_suffix, snapshot_setting, folder_path, 'snapshot', pretty_print) - logger.warning("Snapshot:%s is saved to %s", file_name, file_path) + logger.warning("Snapshot: \"%s\" is saved", snapshot_setting.get('dashboard', {}).get("title")) + logger.info(" -> %s", file_path) def get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, verify_ssl, client_cert, debug, folder_path, pretty_print): @@ -31,7 +32,7 @@ def get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, verify if status == 200: save_snapshot(snapshot['name'], content, folder_path, pretty_print) else: - logger.warning("Getting snapshot %s failed with %s", snapshot['name'], status) + logger.warning("Getting snapshot %s FAILED, status: %s, msg: %s", snapshot['name'], status, content) def get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): From c1f28d9e7386eedc32d06c289804c4f3df908f9b Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Fri, 10 Mar 2023 11:18:40 -0800 Subject: [PATCH 05/19] simplify phase1 --- src/amg/azext_amg/commons.py | 2 +- src/amg/azext_amg/create_annotation.py | 6 +- src/amg/azext_amg/create_dashboard.py | 9 +- src/amg/azext_amg/create_datasource.py | 7 +- src/amg/azext_amg/create_folder.py | 6 +- src/amg/azext_amg/create_snapshot.py | 7 +- src/amg/azext_amg/dashboardApi.py | 145 +++++-------------------- src/amg/azext_amg/save_annotations.py | 12 +- src/amg/azext_amg/save_dashboards.py | 26 ++--- src/amg/azext_amg/save_datasources.py | 12 +- src/amg/azext_amg/save_folders.py | 29 ++--- src/amg/azext_amg/save_snapshots.py | 18 +-- 12 files changed, 90 insertions(+), 189 deletions(-) diff --git a/src/amg/azext_amg/commons.py b/src/amg/azext_amg/commons.py index 2ea3ce06727..b4a2e7d9e48 100644 --- a/src/amg/azext_amg/commons.py +++ b/src/amg/azext_amg/commons.py @@ -22,7 +22,7 @@ def log_response(resp): return resp -def save_json(file_name, data, folder_path, extension, pretty_print): +def save_json(file_name, data, folder_path, extension, pretty_print=None): pattern = "^db/|^uid/" if re.match(pattern, file_name): file_name = re.sub(pattern, '', file_name) diff --git a/src/amg/azext_amg/create_annotation.py b/src/amg/azext_amg/create_annotation.py index 1b9b3273a6a..ff8a859341b 100644 --- a/src/amg/azext_amg/create_annotation.py +++ b/src/amg/azext_amg/create_annotation.py @@ -10,11 +10,11 @@ def create_annotation(grafana_url, file_path, http_headers): data = f.read() annotation = json.loads(data) - result = _create_annotation(json.dumps(annotation), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + result = _create_annotation(json.dumps(annotation), grafana_url, http_post_headers=http_headers) logger.warning("Create annotation \"%s\". %s", annotation['id'], "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) -def _create_annotation(annotation, grafana_url, http_post_headers, verify_ssl, client_cert, debug): +def _create_annotation(annotation, grafana_url, http_post_headers): url = '{0}/api/annotations'.format(grafana_url) - return send_grafana_post(url, annotation, http_post_headers, verify_ssl, client_cert, debug) + return send_grafana_post(url, annotation, http_post_headers) diff --git a/src/amg/azext_amg/create_dashboard.py b/src/amg/azext_amg/create_dashboard.py index 12675a18a89..e0e1c48ce5b 100644 --- a/src/amg/azext_amg/create_dashboard.py +++ b/src/amg/azext_amg/create_dashboard.py @@ -14,16 +14,15 @@ def create_dashboard(grafana_url, file_path, http_headers): payload = { 'dashboard': content['dashboard'], - 'folderId': get_folder_id(content, grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None), + 'folderId': get_folder_id(content, grafana_url, http_post_headers=http_headers), 'overwrite': True } - result = _create_dashboard(json.dumps(payload), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + result = _create_dashboard(json.dumps(payload), grafana_url, http_post_headers=http_headers) dashboard_title = content['dashboard'].get('title', '') logger.warning("Create dashboard \"%s\". %s", dashboard_title, "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) -def _create_dashboard(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - return send_grafana_post('{0}/api/dashboards/db'.format(grafana_url), payload, http_post_headers, verify_ssl, - client_cert, debug) +def _create_dashboard(payload, grafana_url, http_post_headers): + return send_grafana_post('{0}/api/dashboards/db'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/create_datasource.py b/src/amg/azext_amg/create_datasource.py index fbb536e1fc9..3a76ed71a4f 100644 --- a/src/amg/azext_amg/create_datasource.py +++ b/src/amg/azext_amg/create_datasource.py @@ -10,11 +10,10 @@ def create_datasource(grafana_url, file_path, http_headers): data = f.read() datasource = json.loads(data) - result = _create_datasource(json.dumps(datasource), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + result = _create_datasource(json.dumps(datasource), grafana_url, http_post_headers=http_headers) logger.warning("Create datasource \"%s\". %s", datasource['name'], "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) -def _create_datasource(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - return send_grafana_post('{0}/api/datasources'.format(grafana_url), payload, http_post_headers, verify_ssl, - client_cert, debug) +def _create_datasource(payload, grafana_url, http_post_headers): + return send_grafana_post('{0}/api/datasources'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/create_folder.py b/src/amg/azext_amg/create_folder.py index 27d1fb7e851..91f2e1ea3b2 100644 --- a/src/amg/azext_amg/create_folder.py +++ b/src/amg/azext_amg/create_folder.py @@ -10,10 +10,10 @@ def create_folder(grafana_url, file_path, http_headers): data = f.read() folder = json.loads(data) - result = _create_folder(json.dumps(folder), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + result = _create_folder(json.dumps(folder), grafana_url, http_post_headers=http_headers) logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) -def _create_folder(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - return send_grafana_post('{0}/api/folders'.format(grafana_url), payload, http_post_headers, verify_ssl, client_cert, debug) +def _create_folder(payload, grafana_url, http_post_headers): + return send_grafana_post('{0}/api/folders'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/create_snapshot.py b/src/amg/azext_amg/create_snapshot.py index 4191a164152..a6e96c7ff98 100644 --- a/src/amg/azext_amg/create_snapshot.py +++ b/src/amg/azext_amg/create_snapshot.py @@ -15,11 +15,10 @@ def create_snapshot(grafana_url, file_path, http_headers): except KeyError: snapshot['name'] = "Untitled Snapshot" - (status, content) = _create_snapshot(json.dumps(snapshot), grafana_url, http_post_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + (status, content) = _create_snapshot(json.dumps(snapshot), grafana_url, http_post_headers=http_headers) logger.warning("Create snapshot \"%s\". %s", snapshot['name'], "SUCCESS" if status == 200 else "FAILURE") logger.info("status: %s, msg: %s", status, content) -def _create_snapshot(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - return send_grafana_post('{0}/api/snapshots'.format(grafana_url), payload, http_post_headers, verify_ssl, - client_cert, debug) +def _create_snapshot(payload, grafana_url, http_post_headers): + return send_grafana_post('{0}/api/snapshots'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/dashboardApi.py b/src/amg/azext_amg/dashboardApi.py index 8fe2380bbea..b67ecf8e9ef 100644 --- a/src/amg/azext_amg/dashboardApi.py +++ b/src/amg/azext_amg/dashboardApi.py @@ -7,132 +7,62 @@ logger = get_logger(__name__) -def search_dashboard(page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug): +def search_dashboard(page, limit, grafana_url, http_get_headers): url = '{0}/api/search/?type=dash-db&limit={1}&page={2}'.format(grafana_url, limit, page) logger.info("search dashboard in grafana: %s", url) - return send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + return send_grafana_get(url, http_get_headers) -def get_dashboard(board_uri, grafana_url, http_get_headers, verify_ssl, client_cert, debug): +def get_dashboard(board_uri, grafana_url, http_get_headers): url = '{0}/api/dashboards/{1}'.format(grafana_url, board_uri) logger.info("query dashboard uri: %s", url) - (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + (status_code, content) = send_grafana_get(url, http_get_headers) return (status_code, content) -def search_annotations(grafana_url, ts_from, ts_to, http_get_headers, verify_ssl, client_cert, debug): +def search_annotations(grafana_url, ts_from, ts_to, http_get_headers): # there is two types of annotations # annotation: are user created, custom ones and can be managed via the api # alert: are created by Grafana itself, can NOT be managed by the api url = '{0}/api/annotations?type=annotation&limit=5000&from={1}&to={2}'.format(grafana_url, ts_from, ts_to) - (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + (status_code, content) = send_grafana_get(url, http_get_headers) return (status_code, content) -def search_alert_channels(grafana_url, http_get_headers, verify_ssl, client_cert, debug): - url = '{0}/api/alert-notifications'.format(grafana_url) - logger.info("search alert channels in grafana: %s", url) - return send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) - - -def create_alert_channel(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - return send_grafana_post('{0}/api/alert-notifications'.format(grafana_url), payload, http_post_headers, verify_ssl, - client_cert, debug) - - -def delete_alert_channel_by_uid(uid, grafana_url, http_post_headers): - r = requests.delete('{0}/api/alert-notifications/uid/{1}'.format(grafana_url, uid), headers=http_post_headers) - return int(r.status_code) - - -def delete_alert_channel_by_id(id_, grafana_url, http_post_headers): - r = requests.delete('{0}/api/alert-notifications/{1}'.format(grafana_url, id_), headers=http_post_headers) - return int(r.status_code) - - -def search_alerts(grafana_url, http_get_headers, verify_ssl, client_cert, debug): - url = '{0}/api/alerts'.format(grafana_url) - (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) - return (status_code, content) - - -def pause_alert(id_, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - url = '{0}/api/alerts/{1}/pause'.format(grafana_url, id_) - payload = '{ "paused": true }' - (status_code, content) = send_grafana_post(url, payload, http_post_headers, verify_ssl, client_cert, debug) - return (status_code, content) - - -def unpause_alert(id_, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - url = '{0}/api/alerts/{1}/pause'.format(grafana_url, id_) - payload = '{ "paused": false }' - (status_code, content) = send_grafana_post(url, payload, http_post_headers, verify_ssl, client_cert, debug) - return (status_code, content) - - -def delete_folder(uid, grafana_url, http_post_headers): - r = requests.delete('{0}/api/folders/{1}'.format(grafana_url, uid), headers=http_post_headers) - return int(r.status_code) - - -def delete_snapshot(key, grafana_url, http_post_headers): - r = requests.delete('{0}/api/snapshots/{1}'.format(grafana_url, key), headers=http_post_headers) - return int(r.status_code) - - -def delete_dashboard_by_uid(uid, grafana_url, http_post_headers): - r = requests.delete('{0}/api/dashboards/uid/{1}'.format(grafana_url, uid), headers=http_post_headers) - return int(r.status_code) - - -def delete_dashboard_by_slug(slug, grafana_url, http_post_headers): - r = requests.delete('{0}/api/dashboards/db/{1}'.format(grafana_url, slug), headers=http_post_headers) - return int(r.status_code) - - -def search_datasource(grafana_url, http_get_headers, verify_ssl, client_cert, debug): +def search_datasource(grafana_url, http_get_headers): logger.info("search datasources in grafana:") - return send_grafana_get('{0}/api/datasources'.format(grafana_url), http_get_headers, verify_ssl, client_cert, debug) + return send_grafana_get('{0}/api/datasources'.format(grafana_url), http_get_headers) -def search_snapshot(grafana_url, http_get_headers, verify_ssl, client_cert, debug): +def search_snapshot(grafana_url, http_get_headers): logger.info("search snapshots in grafana:") - return send_grafana_get('{0}/api/dashboard/snapshots'.format(grafana_url), http_get_headers, verify_ssl, client_cert, debug) + return send_grafana_get('{0}/api/dashboard/snapshots'.format(grafana_url), http_get_headers) -def get_snapshot(key, grafana_url, http_get_headers, verify_ssl, client_cert, debug): +def get_snapshot(key, grafana_url, http_get_headers): url = '{0}/api/snapshots/{1}'.format(grafana_url, key) - (status_code, content) = send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug) + (status_code, content) = send_grafana_get(url, http_get_headers) return (status_code, content) -def search_folders(grafana_url, http_get_headers, verify_ssl, client_cert, debug): +def search_folders(grafana_url, http_get_headers): logger.info("search folder in grafana:") - return send_grafana_get('{0}/api/search/?type=dash-folder'.format(grafana_url), http_get_headers, verify_ssl, - client_cert, debug) + return send_grafana_get('{0}/api/search/?type=dash-folder'.format(grafana_url), http_get_headers) -def get_folder(uid, grafana_url, http_get_headers, verify_ssl, client_cert, debug): - (status_code, content) = send_grafana_get('{0}/api/folders/{1}'.format(grafana_url, uid), http_get_headers, - verify_ssl, client_cert, debug) +def get_folder(uid, grafana_url, http_get_headers): + (status_code, content) = send_grafana_get('{0}/api/folders/{1}'.format(grafana_url, uid), http_get_headers) logger.info("query folder:%s, status:%s", uid, status_code) return (status_code, content) -def get_folder_permissions(uid, grafana_url, http_get_headers, verify_ssl, client_cert, debug): - (status_code, content) = send_grafana_get('{0}/api/folders/{1}/permissions'.format(grafana_url, uid), http_get_headers, - verify_ssl, client_cert, debug) +def get_folder_permissions(uid, grafana_url, http_get_headers): + (status_code, content) = send_grafana_get('{0}/api/folders/{1}/permissions'.format(grafana_url, uid), http_get_headers) logger.info("query folder permissions:%s, status:%s", uid, status_code) return (status_code, content) -def update_folder_permissions(payload, grafana_url, http_post_headers, verify_ssl, client_cert, debug): - items = json.dumps({'items': payload}) - return send_grafana_post('{0}/api/folders/{1}/permissions'.format(grafana_url, payload[0]['uid']), items, http_post_headers, verify_ssl, client_cert, - debug) - - -def get_folder_id(dashboard, grafana_url, http_post_headers, verify_ssl, client_cert, debug): +def get_folder_id(dashboard, grafana_url, http_post_headers): folder_uid = "" try: folder_uid = dashboard['meta']['folderUid'] @@ -145,7 +75,7 @@ def get_folder_id(dashboard, grafana_url, http_post_headers, verify_ssl, client_ if folder_uid != "": logger.debug("debug: quering with uid %s", folder_uid) - response = get_folder(folder_uid, grafana_url, http_post_headers, verify_ssl, client_cert, debug) + response = get_folder(folder_uid, grafana_url, http_post_headers) if isinstance(response[1], dict): folder_data = response[1] else: @@ -159,40 +89,23 @@ def get_folder_id(dashboard, grafana_url, http_post_headers, verify_ssl, client_ return 0 -def get_dashboard_versions(dashboard_id, grafana_url, http_get_headers, verify_ssl, client_cert, debug): - (status_code, content) = send_grafana_get('{0}/api/dashboards/id/{1}/versions'.format(grafana_url, dashboard_id), http_get_headers, - verify_ssl, client_cert, debug) - logger.info("query dashboard versions: %s, status: %s", dashboard_id, status_code) - return (status_code, content) - - -def get_version(dashboard_id, version_number, grafana_url, http_get_headers, verify_ssl, client_cert, debug): - (status_code, content) = send_grafana_get('{0}/api/dashboards/id/{1}/versions/{2}'.format(grafana_url, dashboard_id, version_number), http_get_headers, - verify_ssl, client_cert, debug) - logger.info("query dashboard %s version %s, status: %s", dashboard_id, version_number, status_code) - return (status_code, content) - - -def send_grafana_get(url, http_get_headers, verify_ssl, client_cert, debug): +def send_grafana_get(url, http_get_headers): - r = requests.get(url, headers=http_get_headers, verify=verify_ssl, cert=client_cert) - if debug: - log_response(r) + r = requests.get(url, headers=http_get_headers) + log_response(r) return (r.status_code, r.json()) -def send_grafana_post(url, json_payload, http_post_headers, verify_ssl=False, client_cert=None, debug=True): - r = requests.post(url, headers=http_post_headers, data=json_payload, verify=verify_ssl, cert=client_cert) - if debug: - log_response(r) +def send_grafana_post(url, json_payload, http_post_headers): + r = requests.post(url, headers=http_post_headers, data=json_payload) + log_response(r) try: return (r.status_code, r.json()) except ValueError: return (r.status_code, r.text) -def send_grafana_put(url, json_payload, http_post_headers, verify_ssl=False, client_cert=None, debug=True): - r = requests.put(url, headers=http_post_headers, data=json_payload, verify=verify_ssl, cert=client_cert) - if debug: - log_response(r) +def send_grafana_put(url, json_payload, http_post_headers): + r = requests.put(url, headers=http_post_headers, data=json_payload) + log_response(r) return (r.status_code, r.json()) diff --git a/src/amg/azext_amg/save_annotations.py b/src/amg/azext_amg/save_annotations.py index 7749b7041d7..0533571e806 100644 --- a/src/amg/azext_amg/save_annotations.py +++ b/src/amg/azext_amg/save_annotations.py @@ -14,17 +14,17 @@ def save_annotations(grafana_url, backup_dir, timestamp, http_headers, **kwargs) if not os.path.exists(folder_path): os.makedirs(folder_path) - get_all_annotations_and_save(folder_path, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + get_all_annotations_and_save(folder_path, grafana_url, http_get_headers=http_headers) print_horizontal_line() -def save_annotation(file_name, annotation_setting, folder_path, pretty_print): - file_path = save_json(file_name, annotation_setting, folder_path, 'annotation', pretty_print) +def save_annotation(file_name, annotation_setting, folder_path): + file_path = save_json(file_name, annotation_setting, folder_path, 'annotation') logger.warning("Annotation: \"%s\" is saved", annotation_setting.get('text')) logger.info(" -> %s", file_path) -def get_all_annotations_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): +def get_all_annotations_and_save(folder_path, grafana_url, http_get_headers): now = int(round(time.time() * 1000)) one_month_in_ms = 31 * 24 * 60 * 60 * 1000 @@ -33,13 +33,13 @@ def get_all_annotations_and_save(folder_path, grafana_url, http_get_headers, ver thirteen_months_retention = (now - (13 * one_month_in_ms)) while ts_from > thirteen_months_retention: - status_code_and_content = search_annotations(grafana_url, ts_from, ts_to, http_get_headers, verify_ssl, client_cert, debug) + status_code_and_content = search_annotations(grafana_url, ts_from, ts_to, http_get_headers) if status_code_and_content[0] == 200: annotations_batch = status_code_and_content[1] logger.info("There are %s annotations:", len(annotations_batch)) for annotation in annotations_batch: logger.info(annotation) - save_annotation(str(annotation['id']), annotation, folder_path, pretty_print) + save_annotation(str(annotation['id']), annotation, folder_path) else: logger.warning("Query annotation FAILED, status: %s, msg: %s", status_code_and_content[0], status_code_and_content[1]) diff --git a/src/amg/azext_amg/save_dashboards.py b/src/amg/azext_amg/save_dashboards.py index 1a064034088..44333326bae 100644 --- a/src/amg/azext_amg/save_dashboards.py +++ b/src/amg/azext_amg/save_dashboards.py @@ -13,16 +13,14 @@ def save_dashboards(grafana_url, backup_dir, timestamp, http_headers, **kwargs): if not os.path.exists(folder_path): os.makedirs(folder_path) - _save_dashboards(folder_path, log_file, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None, **kwargs) + _save_dashboards(folder_path, log_file, grafana_url, http_get_headers=http_headers, **kwargs) -def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug): +def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers): (status, content) = search_dashboard(page, limit, grafana_url, - http_get_headers, - verify_ssl, client_cert, - debug) + http_get_headers) if status == 200: dashboards = content logger.info("There are %s dashboards:", len(dashboards)) @@ -33,36 +31,34 @@ def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers, ve return [] -def save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folder_path, pretty_print): - file_path = save_json(file_name, dashboard_settings, folder_path, 'dashboard', pretty_print) +def save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folder_path): + file_path = save_json(file_name, dashboard_settings, folder_path, 'dashboard') logger.warning("Dashboard: \"%s\" is saved", dashboard_name) logger.info(" -> %s", file_path) -def get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): +def get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers): file_path = folder_path + '/' + log_file if dashboards: with open("{0}".format(file_path), 'w', encoding="utf8") as f: for board in dashboards: board_uri = "uid/{0}".format(board['uid']) - (status, content) = get_dashboard(board_uri, grafana_url, http_get_headers, verify_ssl, client_cert, debug) + (status, content) = get_dashboard(board_uri, grafana_url, http_get_headers) if status == 200: save_dashboard_setting( board['title'], board_uri, content, - folder_path, - pretty_print - ) + folder_path) f.write('{0}\t{1}\n'.format(board_uri, board['title'])) -def _save_dashboards(folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print, **kwargs): +def _save_dashboards(folder_path, log_file, grafana_url, http_get_headers, **kwargs): limit = 5000 # limit is 5000 above V6.2+ current_page = 1 while True: - dashboards = get_all_dashboards_in_grafana(current_page, limit, grafana_url, http_get_headers, verify_ssl, client_cert, debug) + dashboards = get_all_dashboards_in_grafana(current_page, limit, grafana_url, http_get_headers) # only include what users want folders_to_include = kwargs.get('folders_to_include') @@ -78,5 +74,5 @@ def _save_dashboards(folder_path, log_file, grafana_url, http_get_headers, verif if len(dashboards) == 0: break current_page += 1 - get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print) + get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers) print_horizontal_line() diff --git a/src/amg/azext_amg/save_datasources.py b/src/amg/azext_amg/save_datasources.py index da4a755bea1..b6129312446 100644 --- a/src/amg/azext_amg/save_datasources.py +++ b/src/amg/azext_amg/save_datasources.py @@ -12,25 +12,25 @@ def save_datasources(grafana_url, backup_dir, timestamp, http_headers, **kwargs) if not os.path.exists(folder_path): os.makedirs(folder_path) - get_all_datasources_and_save(folder_path, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + get_all_datasources_and_save(folder_path, grafana_url, http_get_headers=http_headers) print_horizontal_line() -def save_datasource(file_name, datasource_setting, folder_path, pretty_print): - file_path = save_json(file_name, datasource_setting, folder_path, 'datasource', pretty_print) +def save_datasource(file_name, datasource_setting, folder_path): + file_path = save_json(file_name, datasource_setting, folder_path, 'datasource') logger.warning("Datasource: \"%s\" is saved", datasource_setting['name']) logger.info(" -> %s", file_path) -def get_all_datasources_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): - status_code_and_content = search_datasource(grafana_url, http_get_headers, verify_ssl, client_cert, debug) +def get_all_datasources_and_save(folder_path, grafana_url, http_get_headers): + status_code_and_content = search_datasource(grafana_url, http_get_headers) if status_code_and_content[0] == 200: datasources = status_code_and_content[1] logger.info("There are %s datasources:", len(datasources)) for datasource in datasources: logger.info(datasource) datasource_name = datasource['uid'] - save_datasource(datasource_name, datasource, folder_path, pretty_print) + save_datasource(datasource_name, datasource, folder_path) else: logger.info("Query datasource FAILED, status: %s, msg: %s", status_code_and_content[0], status_code_and_content[1]) diff --git a/src/amg/azext_amg/save_folders.py b/src/amg/azext_amg/save_folders.py index ff314eb2d43..46365fe49b1 100644 --- a/src/amg/azext_amg/save_folders.py +++ b/src/amg/azext_amg/save_folders.py @@ -13,7 +13,7 @@ def save_folders(grafana_url, backup_dir, timestamp, http_headers, **kwargs): if not os.path.exists(folder_path): os.makedirs(folder_path) - folders = get_all_folders_in_grafana(grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None) + folders = get_all_folders_in_grafana(grafana_url, http_get_headers=http_headers) # only include what users want folders_to_include = kwargs.get('folders_to_include') @@ -26,12 +26,12 @@ def save_folders(grafana_url, backup_dir, timestamp, http_headers, **kwargs): folders = [f for f in folders if f.get('title', '').lower() not in folders_to_exclude] print_horizontal_line() - get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None, uid_support=True) + get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers=http_headers) print_horizontal_line() -def get_all_folders_in_grafana(grafana_url, http_get_headers, verify_ssl, client_cert, debug): - status_and_content_of_all_folders = search_folders(grafana_url, http_get_headers, verify_ssl, client_cert, debug) +def get_all_folders_in_grafana(grafana_url, http_get_headers): + status_and_content_of_all_folders = search_folders(grafana_url, http_get_headers) status = status_and_content_of_all_folders[0] content = status_and_content_of_all_folders[1] if status == 200: @@ -44,27 +44,24 @@ def get_all_folders_in_grafana(grafana_url, http_get_headers, verify_ssl, client return [] -def save_folder_setting(folder_name, file_name, folder_settings, folder_permissions, folder_path, pretty_print): - file_path = save_json(file_name, folder_settings, folder_path, 'folder', pretty_print) +def save_folder_setting(folder_name, file_name, folder_settings, folder_permissions, folder_path): + file_path = save_json(file_name, folder_settings, folder_path, 'folder') logger.warning("Folder: \"%s\" is saved", folder_name) logger.info(" -> %s", file_path) # NOTICE: The 'folder_permission' file extension had the 's' removed to work with the magical dict logic in restore.py... - file_path = save_json(file_name, folder_permissions, folder_path, 'folder_permission', pretty_print) + file_path = save_json(file_name, folder_permissions, folder_path, 'folder_permission') logger.warning("Folder permissions: %s are saved", folder_name) logger.info(" -> %s", file_path) -def get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print, uid_support): +def get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers): file_path = folder_path + '/' + log_file with open("{0}".format(file_path), 'w+', encoding="utf8") as f: for folder in folders: - if uid_support: - folder_uri = "uid/{0}".format(folder['uid']) - else: - folder_uri = folder['uri'] + folder_uri = "uid/{0}".format(folder['uid']) - (status_folder_settings, content_folder_settings) = get_folder(folder['uid'], grafana_url, http_get_headers, verify_ssl, client_cert, debug) - (status_folder_permissions, content_folder_permissions) = get_folder_permissions(folder['uid'], grafana_url, http_get_headers, verify_ssl, client_cert, debug) + (status_folder_settings, content_folder_settings) = get_folder(folder['uid'], grafana_url, http_get_headers) + (status_folder_permissions, content_folder_permissions) = get_folder_permissions(folder['uid'], grafana_url, http_get_headers) if status_folder_settings == 200 and status_folder_permissions == 200: save_folder_setting( @@ -72,7 +69,5 @@ def get_individual_folder_setting_and_save(folders, folder_path, log_file, grafa folder_uri, content_folder_settings, content_folder_permissions, - folder_path, - pretty_print - ) + folder_path) f.write('{0}\t{1}\n'.format(folder_uri, folder['title'])) diff --git a/src/amg/azext_amg/save_snapshots.py b/src/amg/azext_amg/save_snapshots.py index 195c90cd657..ae45e7fa504 100644 --- a/src/amg/azext_amg/save_snapshots.py +++ b/src/amg/azext_amg/save_snapshots.py @@ -15,34 +15,34 @@ def save_snapshots(grafana_url, backup_dir, timestamp, http_headers, **kwargs): if not os.path.exists(folder_path): os.makedirs(folder_path) - get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers=http_headers, verify_ssl=None, client_cert=None, debug=None, pretty_print=None) + get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers=http_headers) print_horizontal_line() -def save_snapshot(file_name, snapshot_setting, folder_path, pretty_print): +def save_snapshot(file_name, snapshot_setting, folder_path): file_name = file_name.replace('/', '_') random_suffix = "".join(random.choice(string.ascii_letters) for _ in range(6)) - file_path = save_json(file_name + "_" + random_suffix, snapshot_setting, folder_path, 'snapshot', pretty_print) + file_path = save_json(file_name + "_" + random_suffix, snapshot_setting, folder_path, 'snapshot') logger.warning("Snapshot: \"%s\" is saved", snapshot_setting.get('dashboard', {}).get("title")) logger.info(" -> %s", file_path) -def get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, verify_ssl, client_cert, debug, folder_path, pretty_print): - (status, content) = get_snapshot(snapshot['key'], grafana_url, http_get_headers, verify_ssl, client_cert, debug) +def get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, folder_path): + (status, content) = get_snapshot(snapshot['key'], grafana_url, http_get_headers) if status == 200: - save_snapshot(snapshot['name'], content, folder_path, pretty_print) + save_snapshot(snapshot['name'], content, folder_path) else: logger.warning("Getting snapshot %s FAILED, status: %s, msg: %s", snapshot['name'], status, content) -def get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers, verify_ssl, client_cert, debug, pretty_print): - status_code_and_content = search_snapshot(grafana_url, http_get_headers, verify_ssl, client_cert, debug) +def get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers): + status_code_and_content = search_snapshot(grafana_url, http_get_headers) if status_code_and_content[0] == 200: snapshots = status_code_and_content[1] logger.info("There are %s snapshots:", len(snapshots)) for snapshot in snapshots: logger.info(snapshot) - get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, verify_ssl, client_cert, debug, folder_path, pretty_print) + get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, folder_path) else: logger.warning("Query snapshot failed, status: %s, msg: %s", status_code_and_content[0], status_code_and_content[1]) From a0028267db627b9bdca9312b3206cedf04c2bd70 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Fri, 10 Mar 2023 19:52:59 -0800 Subject: [PATCH 06/19] consolidate and add test --- src/amg/azext_amg/archive.py | 30 -- src/amg/azext_amg/commons.py | 37 -- src/amg/azext_amg/create_annotation.py | 20 -- src/amg/azext_amg/create_dashboard.py | 28 -- src/amg/azext_amg/create_datasource.py | 19 - src/amg/azext_amg/create_folder.py | 19 - src/amg/azext_amg/create_snapshot.py | 24 -- src/amg/azext_amg/restore.py | 93 ++++- src/amg/azext_amg/save.py | 328 +++++++++++++++++- src/amg/azext_amg/save_annotations.py | 48 --- src/amg/azext_amg/save_dashboards.py | 78 ----- src/amg/azext_amg/save_datasources.py | 36 -- src/amg/azext_amg/save_folders.py | 73 ---- src/amg/azext_amg/save_snapshots.py | 48 --- .../tests/latest/test_amg_scenario.py | 80 +++++ .../azext_amg/{dashboardApi.py => utils.py} | 11 +- 16 files changed, 486 insertions(+), 486 deletions(-) delete mode 100644 src/amg/azext_amg/archive.py delete mode 100644 src/amg/azext_amg/commons.py delete mode 100644 src/amg/azext_amg/create_annotation.py delete mode 100644 src/amg/azext_amg/create_dashboard.py delete mode 100644 src/amg/azext_amg/create_datasource.py delete mode 100644 src/amg/azext_amg/create_folder.py delete mode 100644 src/amg/azext_amg/create_snapshot.py delete mode 100644 src/amg/azext_amg/save_annotations.py delete mode 100644 src/amg/azext_amg/save_dashboards.py delete mode 100644 src/amg/azext_amg/save_datasources.py delete mode 100644 src/amg/azext_amg/save_folders.py delete mode 100644 src/amg/azext_amg/save_snapshots.py rename src/amg/azext_amg/{dashboardApi.py => utils.py} (93%) diff --git a/src/amg/azext_amg/archive.py b/src/amg/azext_amg/archive.py deleted file mode 100644 index 790b3ce0017..00000000000 --- a/src/amg/azext_amg/archive.py +++ /dev/null @@ -1,30 +0,0 @@ -from glob import glob -import os -import tarfile -import shutil -from knack.log import get_logger - -logger = get_logger(__name__) - - -def archive(grafana_name, backup_dir, timestamp): - archive_file = '{0}/{1}-{2}.tar.gz'.format(backup_dir, grafana_name, timestamp) - backup_files = [] - - for folder_name in ['folders', 'datasources', 'dashboards', 'alert_channels', 'organizations', 'users', 'snapshots', 'versions', 'annotations']: - backup_path = '{0}/{1}/{2}'.format(backup_dir, folder_name, timestamp) - - for file_path in glob(backup_path): - logger.info('backup %s at: %s', folder_name, file_path) - backup_files.append(file_path) - - if os.path.exists(archive_file): - os.remove(archive_file) - - with tarfile.open(archive_file, "w:gz") as tar: - for file_path in backup_files: - tar.add(file_path) - if not os.environ.get("AMG_DEBUG", False): - shutil.rmtree(os.path.abspath(os.path.join(file_path, os.pardir))) - tar.close() - logger.warning('Created archive at: %s', archive_file) diff --git a/src/amg/azext_amg/commons.py b/src/amg/azext_amg/commons.py deleted file mode 100644 index b4a2e7d9e48..00000000000 --- a/src/amg/azext_amg/commons.py +++ /dev/null @@ -1,37 +0,0 @@ -import re -import json - -from knack.log import get_logger - -logger = get_logger(__name__) - - -def print_horizontal_line(): - logger.info('') - logger.info("########################################") - logger.info('') - - -def log_response(resp): - status_code = resp.status_code - logger.debug("[DEBUG] resp status: %s", status_code) - try: - logger.debug("[DEBUG] resp body: %s", resp.json()) - except ValueError: - logger.debug("[DEBUG] resp body: %s", resp.text) - return resp - - -def save_json(file_name, data, folder_path, extension, pretty_print=None): - pattern = "^db/|^uid/" - if re.match(pattern, file_name): - file_name = re.sub(pattern, '', file_name) - - file_path = folder_path + '/' + file_name + '.' + extension - with open("{0}".format(file_path), 'w', encoding="utf8") as f: - if pretty_print: - f.write(json.dumps(data, sort_keys=True, indent=4, separators=(',', ': '))) - else: - f.write(json.dumps(data)) - # Return file_path for showing in the console message - return file_path diff --git a/src/amg/azext_amg/create_annotation.py b/src/amg/azext_amg/create_annotation.py deleted file mode 100644 index ff8a859341b..00000000000 --- a/src/amg/azext_amg/create_annotation.py +++ /dev/null @@ -1,20 +0,0 @@ -import json -from knack.log import get_logger -from .dashboardApi import send_grafana_post - -logger = get_logger(__name__) - - -def create_annotation(grafana_url, file_path, http_headers): - with open(file_path, 'r', encoding="utf8") as f: - data = f.read() - - annotation = json.loads(data) - result = _create_annotation(json.dumps(annotation), grafana_url, http_post_headers=http_headers) - logger.warning("Create annotation \"%s\". %s", annotation['id'], "SUCCESS" if result[0] == 200 else "FAILURE") - logger.info("status: %s, msg: %s", result[0], result[1]) - - -def _create_annotation(annotation, grafana_url, http_post_headers): - url = '{0}/api/annotations'.format(grafana_url) - return send_grafana_post(url, annotation, http_post_headers) diff --git a/src/amg/azext_amg/create_dashboard.py b/src/amg/azext_amg/create_dashboard.py deleted file mode 100644 index e0e1c48ce5b..00000000000 --- a/src/amg/azext_amg/create_dashboard.py +++ /dev/null @@ -1,28 +0,0 @@ -import json -from knack.log import get_logger -from .dashboardApi import get_folder_id, send_grafana_post - -logger = get_logger(__name__) - - -def create_dashboard(grafana_url, file_path, http_headers): - with open(file_path, 'r', encoding="utf8") as f: - data = f.read() - - content = json.loads(data) - content['dashboard']['id'] = None - - payload = { - 'dashboard': content['dashboard'], - 'folderId': get_folder_id(content, grafana_url, http_post_headers=http_headers), - 'overwrite': True - } - - result = _create_dashboard(json.dumps(payload), grafana_url, http_post_headers=http_headers) - dashboard_title = content['dashboard'].get('title', '') - logger.warning("Create dashboard \"%s\". %s", dashboard_title, "SUCCESS" if result[0] == 200 else "FAILURE") - logger.info("status: %s, msg: %s", result[0], result[1]) - - -def _create_dashboard(payload, grafana_url, http_post_headers): - return send_grafana_post('{0}/api/dashboards/db'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/create_datasource.py b/src/amg/azext_amg/create_datasource.py deleted file mode 100644 index 3a76ed71a4f..00000000000 --- a/src/amg/azext_amg/create_datasource.py +++ /dev/null @@ -1,19 +0,0 @@ -import json -from knack.log import get_logger -from .dashboardApi import send_grafana_post - -logger = get_logger(__name__) - - -def create_datasource(grafana_url, file_path, http_headers): - with open(file_path, 'r', encoding="utf8") as f: - data = f.read() - - datasource = json.loads(data) - result = _create_datasource(json.dumps(datasource), grafana_url, http_post_headers=http_headers) - logger.warning("Create datasource \"%s\". %s", datasource['name'], "SUCCESS" if result[0] == 200 else "FAILURE") - logger.info("status: %s, msg: %s", result[0], result[1]) - - -def _create_datasource(payload, grafana_url, http_post_headers): - return send_grafana_post('{0}/api/datasources'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/create_folder.py b/src/amg/azext_amg/create_folder.py deleted file mode 100644 index 91f2e1ea3b2..00000000000 --- a/src/amg/azext_amg/create_folder.py +++ /dev/null @@ -1,19 +0,0 @@ -import json -from knack.log import get_logger -from .dashboardApi import send_grafana_post - -logger = get_logger(__name__) - - -def create_folder(grafana_url, file_path, http_headers): - with open(file_path, 'r', encoding="utf8") as f: - data = f.read() - - folder = json.loads(data) - result = _create_folder(json.dumps(folder), grafana_url, http_post_headers=http_headers) - logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") - logger.info("status: %s, msg: %s", result[0], result[1]) - - -def _create_folder(payload, grafana_url, http_post_headers): - return send_grafana_post('{0}/api/folders'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/create_snapshot.py b/src/amg/azext_amg/create_snapshot.py deleted file mode 100644 index a6e96c7ff98..00000000000 --- a/src/amg/azext_amg/create_snapshot.py +++ /dev/null @@ -1,24 +0,0 @@ -import json -from knack.log import get_logger -from .dashboardApi import send_grafana_post - -logger = get_logger(__name__) - - -def create_snapshot(grafana_url, file_path, http_headers): - with open(file_path, 'r', encoding="utf8") as f: - data = f.read() - - snapshot = json.loads(data) - try: - snapshot['name'] = snapshot['dashboard']['title'] - except KeyError: - snapshot['name'] = "Untitled Snapshot" - - (status, content) = _create_snapshot(json.dumps(snapshot), grafana_url, http_post_headers=http_headers) - logger.warning("Create snapshot \"%s\". %s", snapshot['name'], "SUCCESS" if status == 200 else "FAILURE") - logger.info("status: %s, msg: %s", status, content) - - -def _create_snapshot(payload, grafana_url, http_post_headers): - return send_grafana_post('{0}/api/snapshots'.format(grafana_url), payload, http_post_headers) diff --git a/src/amg/azext_amg/restore.py b/src/amg/azext_amg/restore.py index c355f46d881..21cbd3bd0f4 100644 --- a/src/amg/azext_amg/restore.py +++ b/src/amg/azext_amg/restore.py @@ -1,16 +1,14 @@ +import collections +import json from glob import glob import tarfile import tempfile -import collections from azure.cli.core.azclierror import ArgumentUsageError from knack.log import get_logger -from .create_folder import create_folder -from .create_dashboard import create_dashboard -from .create_snapshot import create_snapshot -from .create_annotation import create_annotation -from .create_datasource import create_datasource +from .utils import get_folder_id, send_grafana_post + logger = get_logger(__name__) @@ -24,20 +22,20 @@ def restore(grafana_url, archive_file, components, http_headers): # Shell game magic warning: restore_function keys require the 's' # to be removed in order to match file extension names... restore_functions = collections.OrderedDict() - restore_functions['folder'] = create_folder - restore_functions['dashboard'] = create_dashboard - restore_functions['snapshot'] = create_snapshot - restore_functions['annotation'] = create_annotation - restore_functions['datasource'] = create_datasource + restore_functions['folder'] = _create_folder + restore_functions['dashboard'] = _create_dashboard + restore_functions['snapshot'] = _create_snapshot + restore_functions['annotation'] = _create_annotation + restore_functions['datasource'] = _create_datasource with tarfile.open(name=archive_file, mode='r:gz') as tar: with tempfile.TemporaryDirectory() as tmpdir: tar.extractall(tmpdir) tar.close() - restore_components(grafana_url, restore_functions, tmpdir, components, http_headers) + _restore_components(grafana_url, restore_functions, tmpdir, components, http_headers) -def restore_components(grafana_url, restore_functions, tmpdir, components, http_headers): +def _restore_components(grafana_url, restore_functions, tmpdir, components, http_headers): if components: exts = [c[:-1] for c in components] @@ -50,3 +48,72 @@ def restore_components(grafana_url, restore_functions, tmpdir, components, http_ for file_path in glob('{0}/**/*.{1}'.format(tmpdir, ext), recursive=True): logger.info('Restoring %s: %s', ext, file_path) restore_functions[ext](grafana_url, file_path, http_headers) + + +# Restore dashboards +def _create_dashboard(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + content = json.loads(data) + content['dashboard']['id'] = None + + payload = { + 'dashboard': content['dashboard'], + 'folderId': get_folder_id(content, grafana_url, http_post_headers=http_headers), + 'overwrite': True + } + + result = send_grafana_post('{0}/api/dashboards/db'.format(grafana_url), json.dumps(payload), http_headers) + dashboard_title = content['dashboard'].get('title', '') + logger.warning("Create dashboard \"%s\". %s", dashboard_title, "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) + + +# Restore snapshots +def _create_snapshot(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + snapshot = json.loads(data) + try: + snapshot['name'] = snapshot['dashboard']['title'] + except KeyError: + snapshot['name'] = "Untitled Snapshot" + + (status, content) = send_grafana_post('{0}/api/snapshots'.format(grafana_url), json.dumps(snapshot), http_headers) + logger.warning("Create snapshot \"%s\". %s", snapshot['name'], "SUCCESS" if status == 200 else "FAILURE") + logger.info("status: %s, msg: %s", status, content) + + +# Restore folders +def _create_folder(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + folder = json.loads(data) + result = send_grafana_post('{0}/api/folders'.format(grafana_url), json.dumps(folder), http_headers) + logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) + + +# Restore annotations +def _create_annotation(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + annotation = json.loads(data) + result = send_grafana_post('{0}/api/annotations'.format(grafana_url), json.dumps(annotation), http_headers) + logger.warning("Create annotation \"%s\". %s", annotation['id'], "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) + + +# Restore data sources +def _create_datasource(grafana_url, file_path, http_headers): + with open(file_path, 'r', encoding="utf8") as f: + data = f.read() + + datasource = json.loads(data) + result = send_grafana_post('{0}/api/datasources'.format(grafana_url), json.dumps(datasource), http_headers) + logger.warning("Create datasource \"%s\". %s", datasource['name'], "SUCCESS" if result[0] == 200 else "FAILURE") + logger.info("status: %s, msg: %s", result[0], result[1]) diff --git a/src/amg/azext_amg/save.py b/src/amg/azext_amg/save.py index b25b0f3a77b..204bd17d29c 100644 --- a/src/amg/azext_amg/save.py +++ b/src/amg/azext_amg/save.py @@ -1,19 +1,31 @@ import datetime +from glob import glob +import json +import os +import random +import shutil +import string +import re +import tarfile +import time -from .save_dashboards import save_dashboards -from .save_folders import save_folders -from .save_snapshots import save_snapshots -from .save_annotations import save_annotations -from .save_datasources import save_datasources -from .archive import archive +from knack.log import get_logger + +from .utils import search_dashboard, get_dashboard +from .utils import search_snapshot, get_snapshot +from .utils import search_folders, get_folder, get_folder_permissions +from .utils import search_datasource +from .utils import search_annotations + +logger = get_logger(__name__) def save(grafana_name, grafana_url, backup_dir, components, http_headers, **kwargs): - backup_functions = {'dashboards': save_dashboards, - 'folders': save_folders, - 'snapshots': save_snapshots, - 'annotations': save_annotations, - 'datasources': save_datasources} + backup_functions = {'dashboards': _save_dashboards, + 'folders': _save_folders, + 'snapshots': _save_snapshots, + 'annotations': _save_annotations, + 'datasources': _save_datasources} timestamp = datetime.datetime.today().strftime('%Y%m%d%H%M') if components: @@ -25,4 +37,296 @@ def save(grafana_name, grafana_url, backup_dir, components, http_headers, **kwar for backup_function in backup_functions.values(): backup_function(grafana_url, backup_dir, timestamp, http_headers, **kwargs) - archive(grafana_name, backup_dir, timestamp) + _archive(grafana_name, backup_dir, timestamp) + + +def _archive(grafana_name, backup_dir, timestamp): + archive_file = '{0}/{1}-{2}.tar.gz'.format(backup_dir, grafana_name, timestamp) + backup_files = [] + + for folder_name in ['folders', 'datasources', 'dashboards', 'alert_channels', 'organizations', 'users', 'snapshots', 'versions', 'annotations']: + backup_path = '{0}/{1}/{2}'.format(backup_dir, folder_name, timestamp) + + for file_path in glob(backup_path): + logger.info('backup %s at: %s', folder_name, file_path) + backup_files.append(file_path) + + if os.path.exists(archive_file): + os.remove(archive_file) + + with tarfile.open(archive_file, "w:gz") as tar: + for file_path in backup_files: + tar.add(file_path) + if not os.environ.get("AMG_DEBUG", False): + shutil.rmtree(os.path.abspath(os.path.join(file_path, os.pardir))) + tar.close() + logger.warning('Created archive at: %s', archive_file) + + +# Save dashboards +def _save_dashboards(grafana_url, backup_dir, timestamp, http_headers, **kwargs): + folder_path = '{0}/dashboards/{1}'.format(backup_dir, timestamp) + log_file = 'dashboards_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + limit = 5000 # limit is 5000 above V6.2+ + current_page = 1 + while True: + dashboards = _get_all_dashboards_in_grafana(current_page, limit, grafana_url, http_headers) + + # only include what users want + folders_to_include = kwargs.get('folders_to_include') + folders_to_exclude = kwargs.get('folders_to_exclude') + if folders_to_include: + folders_to_include = [f.lower() for f in folders_to_include] + dashboards = [d for d in dashboards if d.get('folderTitle', '').lower() in folders_to_include] + if folders_to_exclude: + folders_to_exclude = [f.lower() for f in folders_to_exclude] + dashboards = [d for d in dashboards if d.get('folderTitle', '').lower() not in folders_to_exclude] + + _print_an_empty_line() + if len(dashboards) == 0: + break + current_page += 1 + _get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_headers) + _print_an_empty_line() + + +def _get_all_dashboards_in_grafana(page, limit, grafana_url, http_headers): + (status, content) = search_dashboard(page, + limit, + grafana_url, + http_headers) + if status == 200: + dashboards = content + logger.info("There are %s dashboards:", len(dashboards)) + for board in dashboards: + logger.info('name: %s', board['title']) + return dashboards + logger.warning("Get dashboards FAILED, status: %s, msg: %s", status, content) + return [] + + +def _save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folder_path): + file_path = _save_json(file_name, dashboard_settings, folder_path, 'dashboard') + logger.warning("Dashboard: \"%s\" is saved", dashboard_name) + logger.info(" -> %s", file_path) + + +def _get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_headers): + file_path = folder_path + '/' + log_file + if dashboards: + with open("{0}".format(file_path), 'w', encoding="utf8") as f: + for board in dashboards: + board_uri = "uid/{0}".format(board['uid']) + + (status, content) = get_dashboard(board_uri, grafana_url, http_headers) + if status == 200: + _save_dashboard_setting( + board['title'], + board_uri, + content, + folder_path) + f.write('{0}\t{1}\n'.format(board_uri, board['title'])) + + +# Save snapshots +def _save_snapshots(grafana_url, backup_dir, timestamp, http_headers, **kwargs): # pylint: disable=unused-argument + folder_path = '{0}/snapshots/{1}'.format(backup_dir, timestamp) + 'snapshots_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + _get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers=http_headers) + _print_an_empty_line() + + +def _save_snapshot(file_name, snapshot_setting, folder_path): + file_name = file_name.replace('/', '_') + random_suffix = "".join(random.choice(string.ascii_letters) for _ in range(6)) + file_path = _save_json(file_name + "_" + random_suffix, snapshot_setting, folder_path, 'snapshot') + logger.warning("Snapshot: \"%s\" is saved", snapshot_setting.get('dashboard', {}).get("title")) + logger.info(" -> %s", file_path) + + +def _get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, folder_path): + (status, content) = get_snapshot(snapshot['key'], grafana_url, http_get_headers) + if status == 200: + _save_snapshot(snapshot['name'], content, folder_path) + else: + logger.warning("Getting snapshot %s FAILED, status: %s, msg: %s", snapshot['name'], status, content) + + +def _get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers): + status_code_and_content = search_snapshot(grafana_url, http_get_headers) + if status_code_and_content[0] == 200: + snapshots = status_code_and_content[1] + logger.info("There are %s snapshots:", len(snapshots)) + for snapshot in snapshots: + logger.info(snapshot) + _get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, folder_path) + else: + logger.warning("Query snapshot failed, status: %s, msg: %s", status_code_and_content[0], + status_code_and_content[1]) + + +# Save folders +def _save_folders(grafana_url, backup_dir, timestamp, http_headers, **kwargs): + folder_path = '{0}/folders/{1}'.format(backup_dir, timestamp) + log_file = 'folders_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + folders = _get_all_folders_in_grafana(grafana_url, http_get_headers=http_headers) + + # only include what users want + folders_to_include = kwargs.get('folders_to_include') + folders_to_exclude = kwargs.get('folders_to_exclude') + if folders_to_include: + folders_to_include = [f.lower() for f in folders_to_include] + folders = [f for f in folders if f.get('title', '').lower() in folders_to_include] + if folders_to_exclude: + folders_to_exclude = [f.lower() for f in folders_to_exclude] + folders = [f for f in folders if f.get('title', '').lower() not in folders_to_exclude] + + _print_an_empty_line() + _get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers=http_headers) + _print_an_empty_line() + + +def _get_all_folders_in_grafana(grafana_url, http_get_headers): + status_and_content_of_all_folders = search_folders(grafana_url, http_get_headers) + status = status_and_content_of_all_folders[0] + content = status_and_content_of_all_folders[1] + if status == 200: + folders = content + logger.info("There are %s folders:", len(content)) + for folder in folders: + logger.info("name: %s", folder['title']) + return folders + logger.warning("Get folders FAILED, status: %s, msg: %s", status, content) + return [] + + +def _save_folder_setting(folder_name, file_name, folder_settings, folder_permissions, folder_path): + file_path = _save_json(file_name, folder_settings, folder_path, 'folder') + logger.warning("Folder: \"%s\" is saved", folder_name) + logger.info(" -> %s", file_path) + # NOTICE: The 'folder_permission' file extension had the 's' removed to work with the magical dict logic in restore.py... + file_path = _save_json(file_name, folder_permissions, folder_path, 'folder_permission') + logger.warning("Folder permissions: %s are saved", folder_name) + logger.info(" -> %s", file_path) + + +def _get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers): + file_path = folder_path + '/' + log_file + with open("{0}".format(file_path), 'w+', encoding="utf8") as f: + for folder in folders: + folder_uri = "uid/{0}".format(folder['uid']) + + (status_folder_settings, content_folder_settings) = get_folder(folder['uid'], grafana_url, http_get_headers) + (status_folder_permissions, content_folder_permissions) = get_folder_permissions(folder['uid'], grafana_url, http_get_headers) + + if status_folder_settings == 200 and status_folder_permissions == 200: + _save_folder_setting( + folder['title'], + folder_uri, + content_folder_settings, + content_folder_permissions, + folder_path) + f.write('{0}\t{1}\n'.format(folder_uri, folder['title'])) + + +# Save annotations +def _save_annotations(grafana_url, backup_dir, timestamp, http_headers, **kwargs): # pylint: disable=unused-argument + folder_path = '{0}/annotations/{1}'.format(backup_dir, timestamp) + 'annotations_{0}.txt'.format(timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + _get_all_annotations_and_save(folder_path, grafana_url, http_get_headers=http_headers) + _print_an_empty_line() + + +def _save_annotation(file_name, annotation_setting, folder_path): + file_path = _save_json(file_name, annotation_setting, folder_path, 'annotation') + logger.warning("Annotation: \"%s\" is saved", annotation_setting.get('text')) + logger.info(" -> %s", file_path) + + +def _get_all_annotations_and_save(folder_path, grafana_url, http_get_headers): + now = int(round(time.time() * 1000)) + one_month_in_ms = 31 * 24 * 60 * 60 * 1000 + + ts_to = now + ts_from = now - one_month_in_ms + thirteen_months_retention = (now - (13 * one_month_in_ms)) + + while ts_from > thirteen_months_retention: + status_code_and_content = search_annotations(grafana_url, ts_from, ts_to, http_get_headers) + if status_code_and_content[0] == 200: + annotations_batch = status_code_and_content[1] + logger.info("There are %s annotations:", len(annotations_batch)) + for annotation in annotations_batch: + logger.info(annotation) + _save_annotation(str(annotation['id']), annotation, folder_path) + else: + logger.warning("Query annotation FAILED, status: %s, msg: %s", status_code_and_content[0], + status_code_and_content[1]) + + ts_to = ts_from + ts_from = ts_from - one_month_in_ms + + +# Save data sources +def _save_datasources(grafana_url, backup_dir, timestamp, http_headers, **kwargs): # pylint: disable=unused-argument + folder_path = '{0}/datasources/{1}'.format(backup_dir, timestamp) + + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + _get_all_datasources_and_save(folder_path, grafana_url, http_get_headers=http_headers) + _print_an_empty_line() + + +def _save_datasource(file_name, datasource_setting, folder_path): + file_path = _save_json(file_name, datasource_setting, folder_path, 'datasource') + logger.warning("Datasource: \"%s\" is saved", datasource_setting['name']) + logger.info(" -> %s", file_path) + + +def _get_all_datasources_and_save(folder_path, grafana_url, http_get_headers): + status_code_and_content = search_datasource(grafana_url, http_get_headers) + if status_code_and_content[0] == 200: + datasources = status_code_and_content[1] + logger.info("There are %s datasources:", len(datasources)) + for datasource in datasources: + logger.info(datasource) + datasource_name = datasource['uid'] + _save_datasource(datasource_name, datasource, folder_path) + else: + logger.info("Query datasource FAILED, status: %s, msg: %s", status_code_and_content[0], + status_code_and_content[1]) + + +def _save_json(file_name, data, folder_path, extension, pretty_print=None): + pattern = "^db/|^uid/" + if re.match(pattern, file_name): + file_name = re.sub(pattern, '', file_name) + + file_path = folder_path + '/' + file_name + '.' + extension + with open("{0}".format(file_path), 'w', encoding="utf8") as f: + if pretty_print: + f.write(json.dumps(data, sort_keys=True, indent=4, separators=(',', ': '))) + else: + f.write(json.dumps(data)) + return file_path + + +def _print_an_empty_line(): + logger.info('') diff --git a/src/amg/azext_amg/save_annotations.py b/src/amg/azext_amg/save_annotations.py deleted file mode 100644 index 0533571e806..00000000000 --- a/src/amg/azext_amg/save_annotations.py +++ /dev/null @@ -1,48 +0,0 @@ -import os -import time -from knack.log import get_logger -from .dashboardApi import search_annotations -from .commons import print_horizontal_line, save_json - -logger = get_logger(__name__) - - -def save_annotations(grafana_url, backup_dir, timestamp, http_headers, **kwargs): - folder_path = '{0}/annotations/{1}'.format(backup_dir, timestamp) - 'annotations_{0}.txt'.format(timestamp) - - if not os.path.exists(folder_path): - os.makedirs(folder_path) - - get_all_annotations_and_save(folder_path, grafana_url, http_get_headers=http_headers) - print_horizontal_line() - - -def save_annotation(file_name, annotation_setting, folder_path): - file_path = save_json(file_name, annotation_setting, folder_path, 'annotation') - logger.warning("Annotation: \"%s\" is saved", annotation_setting.get('text')) - logger.info(" -> %s", file_path) - - -def get_all_annotations_and_save(folder_path, grafana_url, http_get_headers): - now = int(round(time.time() * 1000)) - one_month_in_ms = 31 * 24 * 60 * 60 * 1000 - - ts_to = now - ts_from = now - one_month_in_ms - thirteen_months_retention = (now - (13 * one_month_in_ms)) - - while ts_from > thirteen_months_retention: - status_code_and_content = search_annotations(grafana_url, ts_from, ts_to, http_get_headers) - if status_code_and_content[0] == 200: - annotations_batch = status_code_and_content[1] - logger.info("There are %s annotations:", len(annotations_batch)) - for annotation in annotations_batch: - logger.info(annotation) - save_annotation(str(annotation['id']), annotation, folder_path) - else: - logger.warning("Query annotation FAILED, status: %s, msg: %s", status_code_and_content[0], - status_code_and_content[1]) - - ts_to = ts_from - ts_from = ts_from - one_month_in_ms diff --git a/src/amg/azext_amg/save_dashboards.py b/src/amg/azext_amg/save_dashboards.py deleted file mode 100644 index 44333326bae..00000000000 --- a/src/amg/azext_amg/save_dashboards.py +++ /dev/null @@ -1,78 +0,0 @@ -import os -from knack.log import get_logger -from .dashboardApi import search_dashboard, get_dashboard -from .commons import print_horizontal_line, save_json - -logger = get_logger(__name__) - - -def save_dashboards(grafana_url, backup_dir, timestamp, http_headers, **kwargs): - folder_path = '{0}/dashboards/{1}'.format(backup_dir, timestamp) - log_file = 'dashboards_{0}.txt'.format(timestamp) - - if not os.path.exists(folder_path): - os.makedirs(folder_path) - - _save_dashboards(folder_path, log_file, grafana_url, http_get_headers=http_headers, **kwargs) - - -def get_all_dashboards_in_grafana(page, limit, grafana_url, http_get_headers): - (status, content) = search_dashboard(page, - limit, - grafana_url, - http_get_headers) - if status == 200: - dashboards = content - logger.info("There are %s dashboards:", len(dashboards)) - for board in dashboards: - logger.info('name: %s', board['title']) - return dashboards - logger.warning("Get dashboards FAILED, status: %s, msg: %s", status, content) - return [] - - -def save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folder_path): - file_path = save_json(file_name, dashboard_settings, folder_path, 'dashboard') - logger.warning("Dashboard: \"%s\" is saved", dashboard_name) - logger.info(" -> %s", file_path) - - -def get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers): - file_path = folder_path + '/' + log_file - if dashboards: - with open("{0}".format(file_path), 'w', encoding="utf8") as f: - for board in dashboards: - board_uri = "uid/{0}".format(board['uid']) - - (status, content) = get_dashboard(board_uri, grafana_url, http_get_headers) - if status == 200: - save_dashboard_setting( - board['title'], - board_uri, - content, - folder_path) - f.write('{0}\t{1}\n'.format(board_uri, board['title'])) - - -def _save_dashboards(folder_path, log_file, grafana_url, http_get_headers, **kwargs): - limit = 5000 # limit is 5000 above V6.2+ - current_page = 1 - while True: - dashboards = get_all_dashboards_in_grafana(current_page, limit, grafana_url, http_get_headers) - - # only include what users want - folders_to_include = kwargs.get('folders_to_include') - folders_to_exclude = kwargs.get('folders_to_exclude') - if folders_to_include: - folders_to_include = [f.lower() for f in folders_to_include] - dashboards = [d for d in dashboards if d.get('folderTitle', '').lower() in folders_to_include] - if folders_to_exclude: - folders_to_exclude = [f.lower() for f in folders_to_exclude] - dashboards = [d for d in dashboards if d.get('folderTitle', '').lower() not in folders_to_exclude] - - print_horizontal_line() - if len(dashboards) == 0: - break - current_page += 1 - get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_get_headers) - print_horizontal_line() diff --git a/src/amg/azext_amg/save_datasources.py b/src/amg/azext_amg/save_datasources.py deleted file mode 100644 index b6129312446..00000000000 --- a/src/amg/azext_amg/save_datasources.py +++ /dev/null @@ -1,36 +0,0 @@ -import os -from knack.log import get_logger -from .dashboardApi import search_datasource -from .commons import print_horizontal_line, save_json - -logger = get_logger(__name__) - - -def save_datasources(grafana_url, backup_dir, timestamp, http_headers, **kwargs): - folder_path = '{0}/datasources/{1}'.format(backup_dir, timestamp) - - if not os.path.exists(folder_path): - os.makedirs(folder_path) - - get_all_datasources_and_save(folder_path, grafana_url, http_get_headers=http_headers) - print_horizontal_line() - - -def save_datasource(file_name, datasource_setting, folder_path): - file_path = save_json(file_name, datasource_setting, folder_path, 'datasource') - logger.warning("Datasource: \"%s\" is saved", datasource_setting['name']) - logger.info(" -> %s", file_path) - - -def get_all_datasources_and_save(folder_path, grafana_url, http_get_headers): - status_code_and_content = search_datasource(grafana_url, http_get_headers) - if status_code_and_content[0] == 200: - datasources = status_code_and_content[1] - logger.info("There are %s datasources:", len(datasources)) - for datasource in datasources: - logger.info(datasource) - datasource_name = datasource['uid'] - save_datasource(datasource_name, datasource, folder_path) - else: - logger.info("Query datasource FAILED, status: %s, msg: %s", status_code_and_content[0], - status_code_and_content[1]) diff --git a/src/amg/azext_amg/save_folders.py b/src/amg/azext_amg/save_folders.py deleted file mode 100644 index 46365fe49b1..00000000000 --- a/src/amg/azext_amg/save_folders.py +++ /dev/null @@ -1,73 +0,0 @@ -import os -from knack.log import get_logger -from .dashboardApi import search_folders, get_folder, get_folder_permissions -from .commons import print_horizontal_line, save_json - -logger = get_logger(__name__) - - -def save_folders(grafana_url, backup_dir, timestamp, http_headers, **kwargs): - folder_path = '{0}/folders/{1}'.format(backup_dir, timestamp) - log_file = 'folders_{0}.txt'.format(timestamp) - - if not os.path.exists(folder_path): - os.makedirs(folder_path) - - folders = get_all_folders_in_grafana(grafana_url, http_get_headers=http_headers) - - # only include what users want - folders_to_include = kwargs.get('folders_to_include') - folders_to_exclude = kwargs.get('folders_to_exclude') - if folders_to_include: - folders_to_include = [f.lower() for f in folders_to_include] - folders = [f for f in folders if f.get('title', '').lower() in folders_to_include] - if folders_to_exclude: - folders_to_exclude = [f.lower() for f in folders_to_exclude] - folders = [f for f in folders if f.get('title', '').lower() not in folders_to_exclude] - - print_horizontal_line() - get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers=http_headers) - print_horizontal_line() - - -def get_all_folders_in_grafana(grafana_url, http_get_headers): - status_and_content_of_all_folders = search_folders(grafana_url, http_get_headers) - status = status_and_content_of_all_folders[0] - content = status_and_content_of_all_folders[1] - if status == 200: - folders = content - logger.info("There are %s folders:", len(content)) - for folder in folders: - logger.info("name: %s", folder['title']) - return folders - logger.warning("Get folders FAILED, status: %s, msg: %s", status, content) - return [] - - -def save_folder_setting(folder_name, file_name, folder_settings, folder_permissions, folder_path): - file_path = save_json(file_name, folder_settings, folder_path, 'folder') - logger.warning("Folder: \"%s\" is saved", folder_name) - logger.info(" -> %s", file_path) - # NOTICE: The 'folder_permission' file extension had the 's' removed to work with the magical dict logic in restore.py... - file_path = save_json(file_name, folder_permissions, folder_path, 'folder_permission') - logger.warning("Folder permissions: %s are saved", folder_name) - logger.info(" -> %s", file_path) - - -def get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers): - file_path = folder_path + '/' + log_file - with open("{0}".format(file_path), 'w+', encoding="utf8") as f: - for folder in folders: - folder_uri = "uid/{0}".format(folder['uid']) - - (status_folder_settings, content_folder_settings) = get_folder(folder['uid'], grafana_url, http_get_headers) - (status_folder_permissions, content_folder_permissions) = get_folder_permissions(folder['uid'], grafana_url, http_get_headers) - - if status_folder_settings == 200 and status_folder_permissions == 200: - save_folder_setting( - folder['title'], - folder_uri, - content_folder_settings, - content_folder_permissions, - folder_path) - f.write('{0}\t{1}\n'.format(folder_uri, folder['title'])) diff --git a/src/amg/azext_amg/save_snapshots.py b/src/amg/azext_amg/save_snapshots.py deleted file mode 100644 index ae45e7fa504..00000000000 --- a/src/amg/azext_amg/save_snapshots.py +++ /dev/null @@ -1,48 +0,0 @@ -import os -import random -import string -from knack.log import get_logger -from .dashboardApi import search_snapshot, get_snapshot -from .commons import print_horizontal_line, save_json - -logger = get_logger(__name__) - - -def save_snapshots(grafana_url, backup_dir, timestamp, http_headers, **kwargs): - folder_path = '{0}/snapshots/{1}'.format(backup_dir, timestamp) - 'snapshots_{0}.txt'.format(timestamp) - - if not os.path.exists(folder_path): - os.makedirs(folder_path) - - get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers=http_headers) - print_horizontal_line() - - -def save_snapshot(file_name, snapshot_setting, folder_path): - file_name = file_name.replace('/', '_') - random_suffix = "".join(random.choice(string.ascii_letters) for _ in range(6)) - file_path = save_json(file_name + "_" + random_suffix, snapshot_setting, folder_path, 'snapshot') - logger.warning("Snapshot: \"%s\" is saved", snapshot_setting.get('dashboard', {}).get("title")) - logger.info(" -> %s", file_path) - - -def get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, folder_path): - (status, content) = get_snapshot(snapshot['key'], grafana_url, http_get_headers) - if status == 200: - save_snapshot(snapshot['name'], content, folder_path) - else: - logger.warning("Getting snapshot %s FAILED, status: %s, msg: %s", snapshot['name'], status, content) - - -def get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers): - status_code_and_content = search_snapshot(grafana_url, http_get_headers) - if status_code_and_content[0] == 200: - snapshots = status_code_and_content[1] - logger.info("There are %s snapshots:", len(snapshots)) - for snapshot in snapshots: - logger.info(snapshot) - get_single_snapshot_and_save(snapshot, grafana_url, http_get_headers, folder_path) - else: - logger.warning("Query snapshot failed, status: %s, msg: %s", status_code_and_content[0], - status_code_and_content[1]) diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index 91625bb4d17..30c3479da13 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -4,8 +4,10 @@ # -------------------------------------------------------------------------------------------- import os +import tempfile import unittest + from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, MSGraphNameReplacer, MOCKED_USER_NAME) from azure.cli.testsdk .scenario_tests import AllowLargeResponse from .test_definitions import (test_data_source, test_notification_channel, test_dashboard) @@ -285,6 +287,84 @@ def test_amg_e2e(self, resource_group): self.assertTrue(final_count, count - 1) + @AllowLargeResponse(size_kb=3072) + @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westcentralus') + def test_amg_backup_restore(self, resource_group): + + # Test Instance + self.kwargs.update({ + 'name': 'clitestamg', + 'location': 'westcentralus', + 'name2': 'clitestamg2', + 'tempDir': tempfile.TemporaryDirectory() + }) + + owner = self._get_signed_in_user() + self.recording_processors.append(MSGraphNameReplacer(owner, MOCKED_USER_NAME)) + + with unittest.mock.patch('azext_amg.custom._gen_guid', side_effect=self.create_guid): + + amg1 = self.cmd('grafana create -g {rg} -n {name} -l {location}').get_output_in_json() + + # set up folder + self.kwargs.update({ + 'folderTitle': 'Test Folder', + 'id': amg1['id'] + }) + self.cmd('grafana folder create -g {rg} -n {name} --title "{folderTitle}"') + + # set up data source + self.kwargs.update({ + 'dataSourceDefinition': test_data_source, + 'dataSourceName': test_data_source["name"] + }) + self.cmd('grafana data-source create -g {rg} -n {name} --definition "{dataSourceDefinition}"') + + # create dashboard + dashboard_title = test_dashboard["dashboard"]["title"] + slug = dashboard_title.lower().replace(' ', '-') + + self.kwargs.update({ + 'dashboardDefinition': test_dashboard, + 'dashboardTitle': dashboard_title, + 'dashboardSlug': slug, + }) + response_create = self.cmd('grafana dashboard create -g {rg} -n {name} --folder {folderTitle} --definition "{dashboardDefinition}" --title "{dashboardTitle}"').get_output_in_json() + + self.kwargs.update({ + 'dashboardUid': response_create["uid"], + }) + + self.cmd('grafana backup -g {rg} -n {name} -d {tempDir}') + + filenames = next(os.walk(tempDir), (None, None, []))[2] + self.assertTrue(len(filenames) == 1) + self.assertTrue(filenames[0].endswith('.tar.gz')) + + self.kwargs.update({ + 'archiveFile': os.path.join(tempDir, filenames[0]) + }) + + self.cmd('grafana folder delete -g {rg} -n {name} --folder "{folderTitle}"') + self.cmd('grafana data-source delete -g {rg} -n {name} --data-source "{dataSourceName}"') + + self.cmd('grafana restore -g {rg} -n {name} --archive-file {archiveFile}') + + self.cmd('grafana data-source show -g {rg} -n {name} --data-source "{dataSourceName}') + self.cmd('grafana folder show -g {rg} -n {name} --folder "{folderTitle}"') + self.cmd('grafana dashboard show -g {rg} -n {name} --dashboard "{dashboardUid}"') # add a bit check + + amg2 = self.cmd('grafana create -g {rg} -n {name2} -l {location}').get_output_in_json() + self.kwargs.update({ + 'id2': amg2['id'] + }) + + self.cmd('grafana dashboard sync --source {id} --destination {id2} --folders-to-include {folderTitle}') + self.cmd('grafana data-source show -g {rg} -n {name2} --data-source "{dataSourceName}') + self.cmd('grafana folder show -g {rg} -n {name2} --folder "{folderTitle}"') + self.cmd('grafana dashboard show -g {rg} -n {name2} --dashboard "{dashboardUid}"') # add a bit check + + def _get_signed_in_user(self): account_info = self.cmd('account show').get_output_in_json() if account_info['user']['type'] == 'user': diff --git a/src/amg/azext_amg/dashboardApi.py b/src/amg/azext_amg/utils.py similarity index 93% rename from src/amg/azext_amg/dashboardApi.py rename to src/amg/azext_amg/utils.py index b67ecf8e9ef..e31b1aef8b0 100644 --- a/src/amg/azext_amg/dashboardApi.py +++ b/src/amg/azext_amg/utils.py @@ -2,11 +2,20 @@ import json import requests from knack.log import get_logger -from .commons import log_response logger = get_logger(__name__) +def log_response(resp): + status_code = resp.status_code + logger.debug("[DEBUG] resp status: %s", status_code) + try: + logger.debug("[DEBUG] resp body: %s", resp.json()) + except ValueError: + logger.debug("[DEBUG] resp body: %s", resp.text) + return resp + + def search_dashboard(page, limit, grafana_url, http_get_headers): url = '{0}/api/search/?type=dash-db&limit={1}&page={2}'.format(grafana_url, limit, page) logger.info("search dashboard in grafana: %s", url) From 1985ca2890dece4477fefdf8c1f4e0111f6119de Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 11 Mar 2023 15:13:59 -0800 Subject: [PATCH 07/19] add a e2e test --- src/amg/azext_amg/custom.py | 2 +- .../recordings/test_amg_backup_restore.yaml | 11611 ++++++++++++++++ .../tests/latest/test_amg_scenario.py | 46 +- 3 files changed, 11636 insertions(+), 23 deletions(-) create mode 100644 src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 18514cea0e3..c8e6bd66adc 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -423,7 +423,7 @@ def create_dashboard(cmd, grafana_name, definition, title=None, folder=None, res overwrite=None, api_key_or_token=None): folder_id = None if folder: - folder_id = _find_folder(cmd, resource_group_name, grafana_name, folder) + folder_id = _find_folder(cmd, resource_group_name, grafana_name, folder)["id"] return _create_dashboard(cmd, grafana_name, definition=definition, title=title, folder_id=folder_id, resource_group_name=resource_group_name, overwrite=overwrite, api_key_or_token=api_key_or_token) diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml new file mode 100644 index 00000000000..4f18fcb19a3 --- /dev/null +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml @@ -0,0 +1,11611 @@ +interactions: +- request: + body: '{"sku": {"name": "Standard"}, "properties": {}, "identity": {"type": "SystemAssigned"}, + "location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:30:50.3934167Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:30:50.3934167Z"},"identity":{"principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview + azure-asyncoperation: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + cache-control: + - no-cache + content-length: + - '1139' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:30:51 GMT + etag: + - '"d7005eef-0000-0600-0000-640d011b0000"' + expires: + - '-1' + location: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:30:51 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:31:21 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:31:51 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:32:22 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:32:52 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:33:22 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:33:52 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:34:22 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:34:52 GMT + etag: + - '"5f00ea5a-0000-0600-0000-640d011b0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-11T22:30:51.557161Z","endTime":"2023-03-11T22:34:53.1454354Z","error":{},"properties":null}' + headers: + cache-control: + - no-cache + content-length: + - '577' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:22 GMT + etag: + - '"5f00f55a-0000-0600-0000-640d020d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:30:50.3934167Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:30:50.3934167Z"},"identity":{"principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1058' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:22 GMT + etag: + - '"d7006cef-0000-0600-0000-640d020d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-graphrbac/0.60.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a82fbf69-b4d7-49f4-83a6-915b2cf354f4","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"LearningAppServiceInTeams","servicePlanId":"b76fb638-6ba6-402a-b9f9-83d28acb3d86"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2023-02-11T23:04:06Z","capabilityStatus":"Deleted","service":"YammerEnterprise","servicePlanId":"a82fbf69-b4d7-49f4-83a6-915b2cf354f4"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"c244cc9e-622f-4576-92ea-82e233e44e36"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL + SWE MANAGER","lastDirSyncTime":"2023-03-06T18:01:28Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang + Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First + Administrative Group/cn=Recipients/cn=yugangw","X500:/o=microsoft/ou=External + (FYDIBOHF25SPDLT)/cn=Recipients/cn=0e00e165bf5842568a693fea3aa4faad","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yugangw_microsoft.com","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang + Wang","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yugangw_c50b13e019","X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yugangw","X500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yugangw17d63dbbde","X500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yugang + Wang (Volt)","X500:/O=Microsoft/OU=APPS-WGA/cn=Recipients/cn=yugangw","X500:/o=MMS/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang5ec8094e-2aed-488b-a327-9baed3c38367","SMTP:example@example.com","smtp:a-ywang2@microsoft.com","smtp:yugangw@msg.microsoft.com","x500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang (Volt)","smtp:YUGANGW@service.microsoft.com"],"refreshTokensValidFromDateTime":"2019-08-29T00:11:39Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"example@example.com","state":null,"streetAddress":null,"surname":"Wang","telephoneNumber":"+1 + (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"144840","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Brahmnes + Fung","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"BFUNG","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"138058"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '25938' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Sat, 11 Mar 2023 22:35:23 GMT + duration: + - '1543109' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - gYXL8Ys0yBAU65H1cShNFgrwPnZJdfXxE+opePIaGk0= + ocp-aad-session-key: + - Z5FQ3uMwN_jfj5i4u3ejwwv7QZxBIn5bokQXKwgKQBcOti2I5UqlPfeBrLkwPOKbu2PGG1Jv8M7fzXR1-hQv_TTYoJmwZqpEcZ7MpjsxjaSP0HH7kbcFFnGqsvGIABFG.Hay-OLdzDndrYHM1iqFtfm3SXajxcq0mR85K3RPvSPI + pragma: + - no-cache + request-id: + - eaf2b6fb-a3b5-4e0d-812c-5531e4cac94f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in + Grafana admin role","assignableScopes":["/"],"permissions":[{"actions":[],"notActions":[],"dataActions":["Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action"],"notDataActions":[]}],"createdOn":"2021-07-15T21:32:35.3802340Z","updatedOn":"2021-11-11T20:15:14.8104670Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","type":"Microsoft.Authorization/roleDefinitions","name":"22926164-76b3-42b3-bc55-97df8dab3e41"}]}' + headers: + cache-control: + - no-cache + content-length: + - '644' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:23 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:35:24.4596773Z","updatedOn":"2023-03-11T22:35:24.9057726Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + headers: + cache-control: + - no-cache + content-length: + - '977' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:26 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can + read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-09-06T17:20:40.5763144Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' + headers: + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:27 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", + "principalId": "e92e71bb-ea60-4f1d-94eb-47f24c329919"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:35:27.9703635Z","updatedOn":"2023-03-11T22:35:28.4053659Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + headers: + cache-control: + - no-cache + content-length: + - '823' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:30 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"sku": {"name": "Standard"}, "properties": {}, "identity": {"type": "SystemAssigned"}, + "location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '116' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:35:31.7338614Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:35:31.7338614Z"},"identity":{"principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview + azure-asyncoperation: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + cache-control: + - no-cache + content-length: + - '1142' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:32 GMT + etag: + - '"d7006fef-0000-0600-0000-640d02350000"' + expires: + - '-1' + location: + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + pragma: + - no-cache + request-context: + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:35:32 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:36:03 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:36:33 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:37:03 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:37:33 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:38:04 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:38:33 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:04 GMT + etag: + - '"5f00f75a-0000-0600-0000-640d02350000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-11T22:35:33.1695516Z","endTime":"2023-03-11T22:39:17.2358242Z","error":{},"properties":null}' + headers: + cache-control: + - no-cache + content-length: + - '579' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:33 GMT + etag: + - '"5f00fd5a-0000-0600-0000-640d03150000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:35:31.7338614Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:35:31.7338614Z"},"identity":{"principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1061' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:33 GMT + etag: + - '"d7007bef-0000-0600-0000-640d03150000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-graphrbac/0.60.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a82fbf69-b4d7-49f4-83a6-915b2cf354f4","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"LearningAppServiceInTeams","servicePlanId":"b76fb638-6ba6-402a-b9f9-83d28acb3d86"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2023-02-11T23:04:06Z","capabilityStatus":"Deleted","service":"YammerEnterprise","servicePlanId":"a82fbf69-b4d7-49f4-83a6-915b2cf354f4"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"c244cc9e-622f-4576-92ea-82e233e44e36"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL + SWE MANAGER","lastDirSyncTime":"2023-03-06T18:01:28Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang + Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First + Administrative Group/cn=Recipients/cn=yugangw","X500:/o=microsoft/ou=External + (FYDIBOHF25SPDLT)/cn=Recipients/cn=0e00e165bf5842568a693fea3aa4faad","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yugangw_microsoft.com","X500:/o=SDF/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang + Wang","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-yugangw_c50b13e019","X500:/o=MSNBC/ou=Servers/cn=Recipients/cn=yugangw","X500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=yugangw17d63dbbde","X500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=microsoft.onmicrosoft.com-55760-Yugang + Wang (Volt)","X500:/O=Microsoft/OU=APPS-WGA/cn=Recipients/cn=yugangw","X500:/o=MMS/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang5ec8094e-2aed-488b-a327-9baed3c38367","SMTP:example@example.com","smtp:a-ywang2@microsoft.com","smtp:yugangw@msg.microsoft.com","x500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang (Volt)","smtp:YUGANGW@service.microsoft.com"],"refreshTokensValidFromDateTime":"2019-08-29T00:11:39Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"example@example.com","state":null,"streetAddress":null,"surname":"Wang","telephoneNumber":"+1 + (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"144840","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Brahmnes + Fung","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"BFUNG","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"138058"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '25938' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Sat, 11 Mar 2023 22:39:35 GMT + duration: + - '955584' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - +oWsWHY2xtogHRyyqqJ3jqbt+HKWHpTfhFG+c9zEzhA= + ocp-aad-session-key: + - XiDSaVjw4ZxLYnSE3Wmq8yUAJIWkGHTK_AdvWNbSSICwq6dMVgk-Z37-YVKLZZd22wS_00D3ot0JtlTjRqNyBdy9lXMDadBWeuf7XwGjFvVpy5wb0DpHMP1FF3Y_5uLl.giNJY4yOb3BbOZP9f6WO2BVJeXxl08OpiaK6DhKfd2U + pragma: + - no-cache + request-id: + - 235ec9f0-f60d-4b84-8f5c-50e39e633711 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in + Grafana admin role","assignableScopes":["/"],"permissions":[{"actions":[],"notActions":[],"dataActions":["Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action"],"notDataActions":[]}],"createdOn":"2021-07-15T21:32:35.3802340Z","updatedOn":"2021-11-11T20:15:14.8104670Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","type":"Microsoft.Authorization/roleDefinitions","name":"22926164-76b3-42b3-bc55-97df8dab3e41"}]}' + headers: + cache-control: + - no-cache + content-length: + - '644' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:34 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:39:35.8799392Z","updatedOn":"2023-03-11T22:39:36.2820500Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' + headers: + cache-control: + - no-cache + content-length: + - '979' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:36 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can + read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-09-06T17:20:40.5763144Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' + headers: + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:36 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", + "principalId": "2d477ccc-31f3-4b5f-845e-631b3bcc14ab"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l + User-Agent: + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:39:37.7563349Z","updatedOn":"2023-03-11T22:39:38.1843346Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' + headers: + cache-control: + - no-cache + content-length: + - '823' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:39 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana folder create + Connection: + - keep-alive + ParameterSetName: + - -g -n --title + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:30:50.3934167Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:30:50.3934167Z"},"identity":{"principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1058' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:39:55 GMT + etag: + - '"d7006cef-0000-0600-0000-640d020d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: '{"title": "Test Folder"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '24' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + response: + body: + string: '{"id":24,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:39:58.801103733Z","updatedBy":"example@example.com","updated":"2023-03-11T22:39:58.801103833Z","version":1,"parentUid":""}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '352' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cEMcuc6fZMMDMJ1eyObI2g';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:39:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574397.428.435.116939|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"access": "proxy", "jsonData": {"azureAuthType": "msi", "subscriptionId": + ""}, "name": "Test Azure Monitor Data Source", "type": "grafana-azure-monitor-datasource"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '165' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + response: + body: + string: '{"datasource":{"id":3,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure + Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource + added","name":"Test Azure Monitor Data Source"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '461' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-0HeEWQ3THAMB2jCuxo6iCg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:39:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574400.062.439.942514|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder + response: + body: + string: '{"message":"id is invalid","traceID":"8fba58f21be539c6debfc40945ace9c3"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '72' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iD0cYb+objkK+swIrXdOiQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:39:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574400.636.443.392646|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder + response: + body: + string: '{"message":"folder not found","status":"not-found"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '51' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1lwJKB7WehvnzswWcAOhmA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:39:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574400.816.437.992636|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + response: + body: + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"TOB175-Vz","title":"Test + Folder"}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '141' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WVeL5F72gr34tUlG6Efrwg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574401.006.440.957571|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"dashboard": {"title": "Test Dashboard"}, "folderId": 24, "overwrite": + false}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '78' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db + response: + body: + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"IZE175-4k","url":"/d/IZE175-4k/test-dashboard","version":1}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '118' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TiArwwIJmYNNzbJ8lCuOIQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574401.588.442.683082|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=1 + response: + body: + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":7,"uid":"dyzn5SK7z","title":"Azure + / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Yo38mcvnz","title":"Azure + / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure + / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure + / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure + / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByRG","title":"Azure + / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure + / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Mtwt2BV7k","title":"Azure + / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"IZE175-4k","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/IZE175-4k/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":24,"folderUid":"TOB175-Vz","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3uTgdS2Cat3lql36lXXlYA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574401.878.436.888392|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:00Z","updated":"2023-03-11T22:40:00Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":24,"folderUid":"TOB175-Vz","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test + Dashboard","uid":"IZE175-4k","version":1}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '881' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-UncdRJS5InmJuGaFbymleA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574402.04.440.208827|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=2 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Utn+UybYU2OLia5lgv5E6g';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574402.22.442.54058|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-folder + response: + body: + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor","uri":"db/azure-monitor","url":"/dashboards/f/az-mon/azure-monitor","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":12,"uid":"geneva","title":"Geneva","uri":"db/geneva","url":"/dashboards/f/geneva/geneva","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":24,"uid":"TOB175-Vz","title":"Test + Folder","uri":"db/test-folder","url":"/dashboards/f/TOB175-Vz/test-folder","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '546' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EYNSqcFW7voKKfvEU7DvDg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574402.395.438.170585|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz + response: + body: + string: '{"id":24,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:39:58Z","updatedBy":"example@example.com","updated":"2023-03-11T22:39:58Z","version":1,"parentUid":""}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '332' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2qtWldKVR5ZYm+3yp7ePVA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574402.559.442.820158|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz/permissions + response: + body: + string: '[{"folderId":24,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Viewer","permission":1,"permissionName":"View","uid":"TOB175-Vz","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/TOB175-Vz/test-folder","inherited":false},{"folderId":24,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Editor","permission":2,"permissionName":"Edit","uid":"TOB175-Vz","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/TOB175-Vz/test-folder","inherited":false}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '783' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Sxnzvt6W7uN9MZpwY4/GKQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574402.723.440.852778|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboard/snapshots + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-my7AmAKtelXh7ecFvmPbcQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574402.892.435.105603|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1675896002126&to=1678574402126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-d4l8hfI7KZyt0Ze8i3G+Zw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574403.055.441.805414|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1673217602126&to=1675896002126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6GQUjE1L0yAYjZgJMSKAJg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574403.238.443.188687|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1670539202126&to=1673217602126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aUmL5tqxUR4grrhyBC++qg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574403.399.436.763492|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1667860802126&to=1670539202126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aF/VtfAMsm9dy+6OX69cSA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574403.563.441.380864|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1665182402126&to=1667860802126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cXfiv7qO3po3KMeeUNyqBQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574403.724.442.281293|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1662504002126&to=1665182402126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-erFXpXjtaAbQlCNZb74YaA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574403.884.438.444675|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1659825602126&to=1662504002126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-mDqb0TmRLimBs9/XbAKI7Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574404.045.439.186844|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1657147202126&to=1659825602126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-k1rGun1te9/znJCBftq7Iw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574404.202.442.946881|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1654468802126&to=1657147202126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-QaAJS3j+I70tJpZNEua3Tw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574404.36.438.978245|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1651790402126&to=1654468802126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/hIWupFBikAguHeHx19A7A';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574404.604.441.62265|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1649112002126&to=1651790402126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6HQgSeio0sor8780/BS2Bw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574404.782.443.532188|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1646433602126&to=1649112002126 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VLtfC7pWk4Iv8LHByyzoXQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574404.94.435.366585|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + response: + body: + string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"QXfJ75a4z","orgId":1,"name":"Test + Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '1155' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DGpFqQjRWLxatW+LP1AGTw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574405.1.442.732545|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder + response: + body: + string: '{"message":"id is invalid","traceID":"2dcca1951f5068c0aaed641a98b84cac"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '72' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ja24uUgulY/m6PKg7Kw5XQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574405.42.442.420268|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder + response: + body: + string: '{"message":"folder not found","status":"not-found"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '51' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CMtl/5qwnKAiopaPtkrJXA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574405.591.443.217971|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + response: + body: + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"TOB175-Vz","title":"Test + Folder"}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '141' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PFXUYOOVzDISyRLSWnLdqg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:04 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574405.771.438.357084|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: DELETE + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz + response: + body: + string: '' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '0' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-IrQQm83cXA3C2YpUTsMxrA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574405.955.440.465640|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + response: + body: + string: '{"id":3,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure Monitor Data + Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '370' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rVn6A0X47yR3vHq68qi2MQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574406.342.443.511111|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: DELETE + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/uid/QXfJ75a4z + response: + body: + string: '{"id":3,"message":"Data source deleted"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '40' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7M6eTELtLirT4ffmFTVDiQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574406.553.435.5991|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"id": 24, "uid": "TOB175-Vz", "title": "Test Folder", "url": "/dashboards/f/TOB175-Vz/test-folder", + "hasAcl": false, "canSave": true, "canEdit": true, "canAdmin": true, "canDelete": + true, "createdBy": "example@example.com", "created": "2023-03-11T22:39:58Z", + "updatedBy": "example@example.com", "updated": "2023-03-11T22:39:58Z", "version": + 1, "parentUid": ""}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '361' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + response: + body: + string: '{"id":26,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:40:05.8826982Z","updatedBy":"example@example.com","updated":"2023-03-11T22:40:05.8826983Z","version":1,"parentUid":""}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '348' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ixPAzdbhgzsUtBnk2RUKXw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:05 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574406.859.439.60433|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz + response: + body: + string: '{"id":26,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:40:05Z","updatedBy":"example@example.com","updated":"2023-03-11T22:40:05Z","version":1,"parentUid":""}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '332' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Zcdk1xAyzcmbGQGh6XisFQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574407.047.441.903613|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"dashboard": {"id": null, "title": "Test Dashboard", "uid": "IZE175-4k", + "version": 1}, "folderId": 26, "overwrite": true}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '123' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db + response: + body: + string: '{"id":27,"slug":"test-dashboard","status":"success","uid":"IZE175-4k","url":"/d/IZE175-4k/test-dashboard","version":1}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '118' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-feHza1INJ2fU65R8M4rxgA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574407.21.441.415556|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"id": 1, "uid": "azure-monitor-oob", "orgId": 1, "name": "Azure Monitor", + "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", "typeLogoUrl": + "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", + "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, + "isDefault": false, "jsonData": {"azureAuthType": "msi", "subscriptionId": "2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"}, + "readOnly": false}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '454' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + response: + body: + string: '{"message":"data source with the same name already exists","traceID":"47c00830241f9bd218e66151bdbb9e94"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '104' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F1ugnVX47zxT49fxKF0blg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574407.411.442.531296|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 409 + message: Conflict +- request: + body: '{"id": 2, "uid": "Geneva", "orgId": 1, "name": "Geneva Datasource", "type": + "geneva-datasource", "typeName": "Geneva Datasource", "typeLogoUrl": "public/plugins/geneva-datasource/img/logo.svg", + "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, + "isDefault": false, "jsonData": {"azureCredentials": {"authType": "msi"}}, "readOnly": + false}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '365' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + response: + body: + string: '{"message":"data source with the same name already exists","traceID":"1b947a827cdb14f31b82b69fd2586398"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '104' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vBODLm9vSHyCDjR7ZdhPEg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574407.574.436.134272|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 409 + message: Conflict +- request: + body: '{"id": 3, "uid": "QXfJ75a4z", "orgId": 1, "name": "Test Azure Monitor Data + Source", "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", + "typeLogoUrl": "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", + "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, + "isDefault": false, "jsonData": {"azureAuthType": "msi", "subscriptionId": ""}, + "readOnly": false}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '427' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + response: + body: + string: '{"datasource":{"id":4,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure + Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource + added","name":"Test Azure Monitor Data Source"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '461' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lNdSw7DNj/nPy2w8tfz/6w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:06 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574407.745.442.701430|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + response: + body: + string: '{"id":4,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure Monitor Data + Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '370' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-P0OqncDGgU3YVzF648HMrw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574408.067.442.473200|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder + response: + body: + string: '{"message":"id is invalid","traceID":"8d4a38424d541c55abefe2dbd99bb0c4"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '72' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-e/XPEFiVkG3KHW3CF9FNfA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574408.346.437.304328|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder + response: + body: + string: '{"message":"folder not found","status":"not-found"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '51' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-c6iAzbYVa7GPFvC7Co8VPw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574408.551.441.871743|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + response: + body: + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":26,"uid":"TOB175-Vz","title":"Test + Folder"}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '141' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yBLm3Kjt7OaPl6i4037OIg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:07 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574408.735.440.817307|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:06Z","updated":"2023-03-11T22:40:06Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"TOB175-Vz","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test + Dashboard","uid":"IZE175-4k","version":1}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '881' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DZ3IzXmCA7pY3UTspBnQZw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574409.02.437.642790|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana dashboard sync + Connection: + - keep-alive + ParameterSetName: + - --source --destination --folders-to-include + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:35:31.7338614Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:35:31.7338614Z"},"identity":{"principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1061' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 11 Mar 2023 22:40:08 GMT + etag: + - '"d7007bef-0000-0600-0000-640d03150000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders + response: + body: + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":18,"uid":"geneva","title":"Geneva"}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '91' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aACGO8pQrki8eSG+v5+wOg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574409.813.440.644018|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/datasources + response: + body: + string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '759' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-QxEnbkSJ9GAwlfWcHlsvKg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574411.434.435.431572|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + response: + body: + string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"QXfJ75a4z","orgId":1,"name":"Test + Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '1155' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xMJYc0oc/7vKc42XZU1f/w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:10 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574411.885.440.133321|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 + response: + body: + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":7,"uid":"dyzn5SK7z","title":"Azure + / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Yo38mcvnz","title":"Azure + / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure + / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure + / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure + / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByRG","title":"Azure + / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure + / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Mtwt2BV7k","title":"Azure + / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"IZE175-4k","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/IZE175-4k/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":26,"folderUid":"TOB175-Vz","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dHU5R2uhJFEnH9LtP3SLuQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574412.074.435.669038|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ZE4k5SI1YeEjkDGzQoSFZg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574412.258.442.993910|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/OSBzdgnnz + response: + body: + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"agent-qos\",\"url\":\"/d/OSBzdgnnz/agent-qos\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:27Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":12,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"agentQoS.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, + 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"type\":\"dashboard\"}]},\"description\":\"\",\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":23,\"links\":[],\"panels\":[{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"options\":{\"content\":\"\\u003cdiv + style=\\\"padding: 1em\\\"\\u003e\\n \\u003cp\\u003eThis dashboard helps + understand and diagnose monitoring agent health. It gives an overview of:\\u003cbr\\u003e\\u003c/p\\u003e\\n + \ \\u003cul\\u003e\\n \\u003cli\\u003eData Quality (Data loss and latency + in monitoring agent)\\u003c/li\\u003e\\n \\u003cli\\u003eResource usage + (Monitoring Agent memory and CPU usage)\\u003c/li\\u003e\\n \\u003c/ul\\u003e\\n + \ \\u003cp\\u003eFor an overview of the Monitoring Agent \\u003ca href=\\\"https://eng.ms/docs/products/geneva/collect/overview\\\" + target=\\\"_blank\\\"\\u003eplease click here\\u003c/a\\u003e.\\u003c/p\\u003e\\n\\u003c/div\\u003e\",\"mode\":\"html\"},\"pluginVersion\":\"8.0.6\",\"title\":\"What + is this dashboard?\",\"type\":\"text\"},{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":12,\"y\":0},\"id\":4,\"options\":{\"content\":\"\\u003cdiv + style=\\\"padding: 1em\\\"\\u003e\\n \\u003cp\\u003e\\u003cspan style=\\\"color:#C97777\\\"\\u003e\\u003cstrong\\u003eNot + seeing data in this dashboard?\\u003c/strong\\u003e\\u003c/span\\u003e\\u003c/p\\u003e\\n + \ \\u003col\\u003e\\n \\u003cli\\u003e\\u003ca data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos#agent-metrics\\\" + href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos#agent-metrics\\\" + target=\\\"_blank\\\"\\u003eLearn about Agent Metrics\\u003c/a\\u003e.\\u003c/li\\u003e\\n + \ \\u003cli\\u003eDepending on where you have created an account, go + to \\n \\u003ca data-cke-saved-href=\\\"\\\" href=\\\"https://jarvis-west.dc.ad.msft.net/settings/mds?page=settings\\u0026mode=mds\\\" + target=\\\"_blank\\\"\\u003ejarvis-prod\\u003c/a\\u003e or \\u003ca data-cke-saved-href=\\\"\\\" + href=\\\"https://jarvis-west-int.cloudapp.net/settings/mds?page=settings\\u0026mode=mds\\\" + target=\\\"_blank\\\"\\u003ejarvis-int\\u003c/a\\u003e, select your environment + and account, and select the most recent config id to open new Config Builder + experience.\\u003c/li\\u003e\\n \\u003cli\\u003eFollow the steps as + mentioned \\u003ca data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/manage/agentmetrics\\\" + href=\\\"https://eng.ms/docs/products/geneva/collect/manage/agentmetrics\\\" + target=\\\"_blank\\\"\\u003ehere\\u003c/a\\u003e to configure Agent metrics.\\u003c/li\\u003e\\n + \ \\u003c/ol\\u003e\\n \\u003cp\\u003eFor more information, review \\u003ca + data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos\\\" + href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos\\\" + target=\\\"_blank\\\"\\u003eQoS metric\\u003c/a\\u003e and \\u003ca data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/manage/agentmetrics#cost-metrics\\\" + href=\\\"https://eng.ms/docs/products/geneva/collect/manage/agentmetrics#cost-metrics\\\" + target=\\\"_blank\\\"\\u003eresource cost metric\\u003c/a\\u003e documentation.\\u003c/p\\u003e\\n\\u003c/div\\u003e\",\"mode\":\"html\"},\"pluginVersion\":\"8.0.6\",\"title\":\"How + to activate this dashboard?\",\"type\":\"text\"},{\"datasource\":\"Geneva + Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"light-blue\",\"mode\":\"fixed\"},\"custom\":{\"axisLabel\":\"\",\"axisPlacement\":\"auto\",\"barAlignment\":0,\"drawStyle\":\"line\",\"fillOpacity\":50,\"gradientMode\":\"hue\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"auto\",\"spanNulls\":false,\"stacking\":{\"group\":\"A\",\"mode\":\"none\"},\"thresholdsStyle\":{\"mode\":\"off\"}},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"yellow\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":10,\"w\":12,\"x\":0,\"y\":6},\"id\":6,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"single\"}},\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"Data + delay in Seconds\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"DataDelayInSeconds\\\").samplingTypes(\\\"Average\\\").preaggregate(\\\"Total\\\") + | project Average=replacenulls(Average,0) | zoom avg=avg(Average) by 1h\",\"refId\":\"A\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"Data + Latency\",\"type\":\"timeseries\"},{\"datasource\":null,\"gridPos\":{\"h\":10,\"w\":12,\"x\":12,\"y\":6},\"id\":8,\"options\":{\"content\":\"\\u003cdiv\\u003e\\n + \ \\u003cp\\u003e\\n \u200B\\u003cstrong\\u003eData Latency\\u003c/strong\\u003e: + The delay from when the Monitoring Agent receives all of the data it schedules + to upload in a batch and when it uploads that batch of data to the pipeline. + See the\\n \\u003ca href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos#agent-metrics\\\" + target=\\\"_blank\\\" data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos#agent-metrics\\\"\\u003e\\n + \ agent metrics help page\\n \\u003c/a\\u003e\\n for + more information on how to interpret this chart.\\n \\u003c/p\\u003e\\n + \ \\u003cp\\u003e\\n \\u003cstrong\\u003eRetries due to Throttling:\\u003c/strong\\u003e\\n + \ A high value for this metric means many data upload requests or Geneva + pipeline notification requests from the Monitoring Agent are being throttled + and retried.\\n \\u003c/p\\u003e\\n \\u003cp\\u003e\\u003cstrong\\u003eData + and Notification Failures:\\u003c/strong\\u003e A high value for this metric + means that MA failed to upload a batch of event data or the notifications + that the data was pushed to the pipeline.\\u003c/p\\u003e\\n \\u003cp\\u003e\\n + \ \\u003cstrong\\u003eEvents Dropped: \\u003c/strong\\u003eThe number + of events lost. See\\n \\u003ca href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos#agent-metrics\\\" + target=\\\"_blank\\\" data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/agentqos#agent-metrics\\\"\\u003e\\n + \ this help page\\n \\u003c/a\\u003e\\n for more details.\\n + \ \\u003c/p\\u003e\\n \\u003cp\\u003e\\n Please review the \\u003ca + href=\\\"change this\\\" target=\\\"_blank\\\" data-cke-saved-href=\\\"change + this\\\"\\u003ewiki\\u003c/a\\u003e\\n for guidance on many storage + accounts and event hubs you need.\\n \\u003c/p\\u003e\\n\\u003c/div\\u003e\",\"mode\":\"html\"},\"pluginVersion\":\"8.0.6\",\"title\":\"Data + Quality Help\",\"type\":\"text\"},{\"datasource\":\"Geneva Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"axisLabel\":\"Count\",\"axisPlacement\":\"auto\",\"barAlignment\":-1,\"drawStyle\":\"bars\",\"fillOpacity\":100,\"gradientMode\":\"opacity\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"auto\",\"spanNulls\":false,\"stacking\":{\"group\":\"A\",\"mode\":\"normal\"},\"thresholdsStyle\":{\"mode\":\"off\"}},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"orange\",\"value\":null}]},\"unit\":\"short\"},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Notification + retries\"},\"properties\":[{\"id\":\"color\",\"value\":{\"fixedColor\":\"light-green\",\"mode\":\"fixed\"}}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Data + upload retries\"},\"properties\":[{\"id\":\"color\",\"value\":{\"fixedColor\":\"rgba(255, + 202, 104, 1)\",\"mode\":\"fixed\"}}]}]},\"gridPos\":{\"h\":11,\"w\":9,\"x\":0,\"y\":16},\"id\":12,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"multi\"}},\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"Notification + retries\",\"dimension\":\"\",\"hide\":false,\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"FailedNotificationTask\\\").samplingTypes(\\\"Sum\\\").preaggregate(\\\"Total\\\") + | project Sum=replacenulls(Sum,0) | zoom Sum=sum(Sum) by 1d\",\"refId\":\"Notification + retries\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true},{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"Data + upload retries\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"FailedUploadTasks\\\").samplingTypes(\\\"Sum\\\").preaggregate(\\\"Total\\\") + | project Sum=replacenulls(Sum,0) | zoom Sum=sum(Sum) by 1d\",\"refId\":\"Data + upload retries\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"Data + and Notification Throttling\",\"transformations\":[{\"id\":\"groupBy\",\"options\":{\"fields\":{\"time\":{\"aggregations\":[],\"operation\":null}}}}],\"type\":\"timeseries\"},{\"datasource\":\"Geneva + Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"axisLabel\":\"Count\",\"axisPlacement\":\"auto\",\"barAlignment\":-1,\"drawStyle\":\"bars\",\"fillOpacity\":90,\"gradientMode\":\"opacity\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"auto\",\"spanNulls\":false,\"stacking\":{\"group\":\"A\",\"mode\":\"normal\"},\"thresholdsStyle\":{\"mode\":\"off\"}},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"orange\",\"value\":null}]},\"unit\":\"short\"},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Notification + failures\"},\"properties\":[{\"id\":\"color\",\"value\":{\"fixedColor\":\"yellow\",\"mode\":\"fixed\"}}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Data + upload failure\"},\"properties\":[{\"id\":\"color\",\"value\":{\"fixedColor\":\"purple\",\"mode\":\"fixed\"}}]}]},\"gridPos\":{\"h\":11,\"w\":8,\"x\":9,\"y\":16},\"id\":20,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"multi\"}},\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"Notification + failures\",\"dimension\":\"\",\"hide\":false,\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"TimedoutNotificationTask\\\").samplingTypes(\\\"Sum\\\").preaggregate(\\\"Total\\\") + | project Sum=replacenulls(Sum,0) | zoom Sum=sum(Sum) by 1d\",\"refId\":\"Notification + failures\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true},{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"Data + upload failure\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"TimedoutUploadTasks\\\").samplingTypes(\\\"Sum\\\").preaggregate(\\\"Total\\\") + | project Sum=replacenulls(Sum,0) | zoom Sum=sum(Sum) by 1d\",\"refId\":\"Data + upload failures\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"Data + Upload and Pipeline Notification Failures\",\"transformations\":[{\"id\":\"groupBy\",\"options\":{\"fields\":{\"time\":{\"aggregations\":[],\"operation\":null}}}}],\"type\":\"timeseries\"},{\"datasource\":\"Geneva + Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"light-blue\",\"mode\":\"fixed\"},\"custom\":{\"axisLabel\":\"\",\"axisPlacement\":\"auto\",\"barAlignment\":0,\"drawStyle\":\"line\",\"fillOpacity\":0,\"gradientMode\":\"none\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"auto\",\"spanNulls\":false,\"stacking\":{\"group\":\"A\",\"mode\":\"none\"},\"thresholdsStyle\":{\"mode\":\"off\"}},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]},\"unit\":\"short\"},\"overrides\":[]},\"gridPos\":{\"h\":11,\"w\":7,\"x\":17,\"y\":16},\"id\":16,\"maxDataPoints\":null,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"single\"}},\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"Events + Dropped\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"EventsDropped\\\").samplingTypes(\\\"Sum\\\").preaggregate(\\\"Total\\\") + | project Sum=replacenulls(Sum,0) | zoom avg=avg(Sum) by 1h\",\"refId\":\"Events + Dropped\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"timeFrom\":null,\"title\":\"Events + Dropped\",\"type\":\"timeseries\"},{\"datasource\":\"Geneva Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"light-yellow\",\"mode\":\"fixed\"},\"custom\":{\"axisLabel\":\"\",\"axisPlacement\":\"auto\",\"barAlignment\":0,\"drawStyle\":\"line\",\"fillOpacity\":50,\"gradientMode\":\"opacity\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineStyle\":{\"fill\":\"solid\"},\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"auto\",\"spanNulls\":true,\"stacking\":{\"group\":\"A\",\"mode\":\"none\"},\"thresholdsStyle\":{\"mode\":\"area\"}},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"semi-dark-green\",\"value\":null},{\"color\":\"light-yellow\",\"value\":65},{\"color\":\"semi-dark-red\",\"value\":85}]},\"unit\":\"percent\"},\"overrides\":[]},\"gridPos\":{\"h\":8,\"w\":12,\"x\":0,\"y\":27},\"id\":18,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"single\"}},\"pluginVersion\":\"8.0.6\",\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"CPU + Usage (fraction)\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"CpuUsage\\\").samplingTypes(\\\"Average\\\").preaggregate(\\\"Total\\\") + | project cpuUsage=Average | zoom cpuUsage=avg(cpuUsage) by 1h\",\"refId\":\"CPU + Usage\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"MA + Resource Usage (CPU)\",\"transformations\":[{\"id\":\"calculateField\",\"options\":{\"alias\":\"CPU + Usage (%)\",\"binary\":{\"left\":\"CPU Usage (fraction)\",\"operator\":\"*\",\"reducer\":\"sum\",\"right\":\"100\"},\"mode\":\"binary\",\"reduce\":{\"include\":[\"CPU + Usage (fraction)\"],\"reducer\":\"last\"},\"replaceFields\":true}}],\"type\":\"timeseries\"},{\"datasource\":\"Geneva + Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"yellow\",\"mode\":\"fixed\"},\"custom\":{\"axisLabel\":\"MB\",\"axisPlacement\":\"auto\",\"barAlignment\":0,\"drawStyle\":\"line\",\"fillOpacity\":50,\"gradientMode\":\"hue\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineStyle\":{\"fill\":\"solid\"},\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"auto\",\"spanNulls\":false,\"stacking\":{\"group\":\"A\",\"mode\":\"none\"},\"thresholdsStyle\":{\"mode\":\"area\"}},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":10000}]},\"unit\":\"none\"},\"overrides\":[]},\"gridPos\":{\"h\":8,\"w\":12,\"x\":12,\"y\":27},\"id\":19,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"multi\"}},\"pluginVersion\":\"8.0.6\",\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"Memory + Usage (MB)\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"MemoryUsage\\\").samplingTypes(\\\"Average\\\").preaggregate(\\\"Total\\\") + | project MemoryUsage=Average/(1024*1024)\",\"refId\":\"A\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"MA + Resource Usage (Memory)\",\"type\":\"timeseries\"},{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":24,\"x\":0,\"y\":35},\"id\":10,\"options\":{\"content\":\"\\u003cdiv + style=\\\"padding: 1em;\\\"\\u003e\\n \\u003cp\\u003e\\n These metrics + help you determine what MA features are taking the most time within the MA + process. You can track which MA data collection operations are the most costly + and which event tasks are the most expensive in terms of time\\n they + take to execute. Common causes of costly events include derived events that + have expensive queries or push a\\n \\u003ca href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/windowsdatacosts\\\" + target=\\\"_blank\\\" data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/windowsdatacosts\\\"\\u003e\\n + \ large amount of data to storage\\n \\u003c/a\\u003e\\n + \ \\u003c/p\\u003e\\n \\u003cp\\u003e\\n Please review the\\n + \ \\u003ca href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/windowsdatacosts\\\" + target=\\\"_blank\\\" data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/advanced/windowsdatacosts\\\"\\u003e\\n + \ cost metrics help page\\n \\u003c/a\\u003e\\n for + a more detailed description of how the metrics are calculated, operation definitions, + and how to further drill down to debug why an event is expensive.\\n \\u003c/p\\u003e\\n + \ \\u003cp\\u003e\\n See\\n \\u003ca href=\\\"https://eng.ms/docs/products/geneva/collect/manage/costmetricconfig\\\" + target=\\\"_blank\\\" data-cke-saved-href=\\\"https://eng.ms/docs/products/geneva/collect/manage/costmetricconfig\\\"\\u003e\\n + \ this help page\\n \\u003c/a\\u003e\\n if you do + not see data in the charts to your left.\\n \\u003c/p\\u003e\\n\\u003c/div\\u003e\\n\",\"mode\":\"html\"},\"pluginVersion\":\"8.0.6\",\"title\":\"Costly + Events Help\",\"type\":\"text\"},{\"datasource\":\"Geneva Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false}},\"mappings\":[]},\"overrides\":[]},\"gridPos\":{\"h\":8,\"w\":12,\"x\":0,\"y\":41},\"id\":22,\"options\":{\"legend\":{\"displayMode\":\"list\",\"placement\":\"bottom\"},\"pieType\":\"donut\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"tooltip\":{\"mode\":\"single\"}},\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{Operation}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"MaOperationCosts\\\").samplingTypes(\\\"Average\\\").preaggregate(\\\"AgentQOSPerOperation\\\") + \\n| project Average=replacenulls(Average, 0) \\n| zoom Average=avg(Average) + by 5m\\n| top 10 by avg(Average) desc\",\"refId\":\"Costly Operations\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"Top + Costly Operations\",\"type\":\"piechart\"},{\"datasource\":\"Geneva Datasource\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false}},\"mappings\":[]},\"overrides\":[]},\"gridPos\":{\"h\":8,\"w\":12,\"x\":12,\"y\":41},\"id\":23,\"options\":{\"legend\":{\"displayMode\":\"list\",\"placement\":\"bottom\"},\"pieType\":\"donut\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"tooltip\":{\"mode\":\"single\"}},\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{EventName}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"Monitoring + Agent\",\"queryText\":\"metric(\\\"MaEventCosts\\\").samplingTypes(\\\"Average\\\").preaggregate(\\\"AgentQOSPerEventName\\\") + \\n| project Average=replacenulls(Average, 0) \\n| where avg(Average) \\u003e + 0\\n| top 10 by avg(Average) desc\",\"refId\":\"Costly Operations\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"Costly + Event Names\",\"type\":\"piechart\"}],\"refresh\":false,\"schemaVersion\":30,\"style\":\"dark\",\"tags\":[],\"templating\":{\"list\":[{\"allValue\":null,\"current\":{},\"datasource\":\"Geneva + Datasource\",\"definition\":\"accounts()\",\"description\":\"The Geneva metrics + account name\",\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Account\",\"multi\":false,\"name\":\"account\",\"options\":[],\"query\":\"accounts()\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":1,\"type\":\"query\"}]},\"time\":{\"from\":\"now-7d\",\"to\":\"now\"},\"timepicker\":{},\"timezone\":\"\",\"title\":\"Agent + QoS\",\"uid\":\"OSBzdgnnz\",\"version\":2}}" + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YMFMGG6H1/FQCeUTeEeM8g';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574412.446.437.475145|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/54KhiZ7nz + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AKSLinuxSample.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":14,"links":[],"liveNow":false,"panels":[{"datasource":null,"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":6,"options":{"content":"This + dashboard shows telemetry from the machine running the AKSGenevaSample Application.\n\u003cbr\u003e\nThe + dashboard will contain data only if your service (AKSGenevaSample) is running + and the Geneva Agent is set up correctly.\n\u003cbr\u003e\nTo set up a sample + application and send telemetry to Geneva refer \n\u003ca href=\"https://eng.ms/docs/products/geneva/getting_started/environments/akslinux\"\u003ethis + documentation\u003c/a\u003e.\n\u003cbr\u003e\nTo learn more about running + Geneva Monitoring to collect telemetry from AKS \u003ca href=\"https://eng.ms/docs/products/geneva/getting_started/environments/akslinux\"\u003esee + here\u003c/a\u003e.","mode":"html"},"pluginVersion":"8.3.0-pre","title":"What + is this dashboard?","type":"text"},{"datasource":"Geneva Datasource","description":"Average + temperature of the machine where the Geneva Agent is running","fieldConfig":{"defaults":{"color":{"fixedColor":"super-light-yellow","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":50,"gradientMode":"opacity","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":2,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"area"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"yellow","value":35},{"color":"red","value":40}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":4},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"","backends":[],"customSeriesNaming":"Avg + Node Temperature (F)","dimension":"","environment":"prod","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricsQueryType":"query","namespace":"","queryText":"metric(\"Temperature\").samplingTypes(\"Average\").resolution(1m)","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Average + Temperature of the Node","type":"timeseries"},{"datasource":"Geneva Datasource","description":"Average + number of boot failures on the node","fieldConfig":{"defaults":{"color":{"fixedColor":"orange","mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":2,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Failure"},"properties":[{"id":"color","value":{"fixedColor":"red","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Success"},"properties":[{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]}]},"gridPos":{"h":9,"w":12,"x":12,"y":4},"id":4,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"multi"}},"targets":[{"account":"","backends":[],"customSeriesNaming":"Success","dimension":"","environment":"prod","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricsQueryType":"query","namespace":"","queryText":"metric(\"Boot + Success\").samplingTypes(\"Count\").resolution(1m)","refId":"SuccessQuery","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true},{"account":"","backends":[],"customSeriesNaming":"Failure","dimension":"","environment":"prod","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricsQueryType":"query","namespace":"","queryText":"metric(\"Boot + Failure\").samplingTypes(\"Count\").resolution(1m)","refId":"FailureQuery","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Average + Count of Boot Failures vs Success","type":"timeseries"}],"refresh":"","schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[]},"time":{"from":"now-30m","to":"now"},"timepicker":{},"timezone":"","title":"AKS + Linux Sample Application","uid":"54KhiZ7nz","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-glunjHFbMi2CqaJOKKcqdg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574412.68.441.356379|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6uRDjTNnz + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"app-detail","url":"/d/6uRDjTNnz/app-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AppDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":20,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + Datasource","description":"For a particular cluster and an application, this + widget shows it''s health timeline - time when the application sent Ok, Warning + and Error as it''s health status","fieldConfig":{"defaults":{"color":{"mode":"continuous-GrYlRd"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":0,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]}]},"gridPos":{"h":15,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"customSeriesNaming":"{HealthState} + {ClusterName} {AppName}","dimension":"ClusterName, AppName, HealthState","dimensionFilterOperators":["in","in","in"],"dimensionFilterValues":[null,null,["Ok"]],"dimensionFilters":["AppName","ClusterName","HealthState"],"groupByUnit":"m","groupByValue":"5","healthQueryType":"Topology","metric":"AppHealthState","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"AppHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + AppName, HealthState\") | where HealthState == \"Ok\" and ClusterName in (\"$clusterName\") + and AppName in (\"$appName\") | project Count=replacenulls(Count, 0) | zoom + Count=sum(Count) by 5m | top 40 by avg(Count)","refId":"Ok","resAggFunc":"sum","samplingType":"Count","service":"metrics","subscription":"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc","useBackends":false,"useCustomSeriesNaming":true},{"account":"$account","backends":[],"customSeriesNaming":"{HealthState} + {ClusterName} {AppName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"AppHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + AppName, HealthState\") | where HealthState == \"Warning\" and ClusterName + in (\"$ClusterName\") and AppName in (\"$AppName\") | project Count=replacenulls(Count, + 0) | zoom Count=sum(Count) by 5m | top 40 by avg(Count)","refId":"Warning","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true},{"account":"$account","backends":[],"customSeriesNaming":"{HealthState} + {ClusterName} {AppName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"AppHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + AppName, HealthState\") | where HealthState == \"Error\" and ClusterName in + (\"$ClusterName\") and AppName in (\"$AppName\") | project Count=replacenulls(Count, + 0) | zoom Count=sum(Count) by 5m | top 40 by avg(Count)","refId":"Error","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Application + health timeline","type":"state-timeline"}],"refresh":"","schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Accounts()","description":"The Geneva metrics account + name","error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"account","options":[],"query":"Accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($account, ServiceFabric, AppHealthState, + ClusterName)","description":"The name of the cluster you want to see data + for","error":null,"hide":0,"includeAll":false,"label":"Cluster Name","multi":true,"name":"ClusterName","options":[],"query":"dimensionValues($account, + ServiceFabric, AppHealthState, ClusterName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{"selected":true,"text":["None"],"value":[""]},"datasource":"Geneva + Datasource","definition":"dimensionValues($account, ServiceFabric, AppHealthState, + AppName)","description":"Application name in the cluster","error":null,"hide":0,"includeAll":false,"label":"App + Name","multi":true,"name":"AppName","options":[],"query":"dimensionValues($account, + ServiceFabric, AppHealthState, AppName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"App + Detail","uid":"6uRDjTNnz","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WCHBjLxf9xCPviypK+dH1w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574412.908.441.213524|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/dyzn5SK7z + response: + body: + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-alert-consumption\",\"url\":\"/d/dyzn5SK7z/azure-alert-consumption\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:26Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"v1Alerts.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__elements\":[],\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"8.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure + Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"A + summary of all alerts for the subscription and other filters selected\",\"editable\":true,\"id\":7,\"links\":[],\"liveNow\":false,\"panels\":[{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Total + Alerts\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev0\\u0026var-sev=Sev1\\u0026var-sev=Sev2\\u0026var-sev=Sev3\\u0026var-sev=Sev4\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":0,\"y\":0},\"id\":4,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| + where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) + \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) + \\u003c= $__timeTo\\r\\n| where tolower(subscriptionId) == tolower(\\\"$sub\\\") + and properties.essentials.targetResourceGroup in~ ($rg) and properties.essentials.monitorCondition + in~ ($mc)\\r\\nand properties.essentials.alertState in~ ($as) and properties.essentials.severity + in~ ($sev)\\r\\n| summarize count()\"},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"queryType\":\"Azure + Resource Graph\",\"refId\":\"A\",\"subscription\":\"\",\"subscriptions\":[\"$sub\"]}],\"transformations\":[{\"id\":\"organize\",\"options\":{\"excludeByName\":{},\"indexByName\":{},\"renameByName\":{\"count_\":\"Total + Alerts\"}}}],\"type\":\"stat\"},{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"red\",\"mode\":\"fixed\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Critical\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev0\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":2,\"y\":0},\"id\":15,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| + where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) + \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) + \\u003c= $__timeTo\\r\\n| where tolower(subscriptionId) == tolower(\\\"$sub\\\") + and properties.essentials.targetResourceGroup in~ ($rg) and properties.essentials.monitorCondition + in~ ($mc)\\r\\nand properties.essentials.alertState in~ ($as) and properties.essentials.severity + in~ ($sev) and properties.essentials.severity == \\\"Sev0\\\" \\r\\n| summarize + count()\"},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"queryType\":\"Azure + Resource Graph\",\"refId\":\"A\",\"subscription\":\"\",\"subscriptions\":[\"$sub\"]}],\"transformations\":[{\"id\":\"organize\",\"options\":{\"excludeByName\":{},\"indexByName\":{},\"renameByName\":{\"count_\":\"Critical\"}}}],\"type\":\"stat\"},{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"orange\",\"mode\":\"fixed\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Error\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev1\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":4,\"y\":0},\"id\":8,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| + where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) + \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) + \\u003c= $__timeTo\\r\\n| where tolower(subscriptionId) == tolower(\\\"$sub\\\") + and properties.essentials.targetResourceGroup in~ ($rg) and properties.essentials.monitorCondition + in~ ($mc)\\r\\nand properties.essentials.alertState in~ ($as) and properties.essentials.severity + in~ ($sev) and properties.essentials.severity == \\\"Sev1\\\" \\r\\n| summarize + count()\"},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"queryType\":\"Azure + Resource Graph\",\"refId\":\"A\",\"subscription\":\"\",\"subscriptions\":[\"$sub\"]}],\"transformations\":[{\"id\":\"organize\",\"options\":{\"excludeByName\":{},\"indexByName\":{},\"renameByName\":{\"count_\":\"Error\"}}}],\"type\":\"stat\"},{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"yellow\",\"mode\":\"fixed\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Warning\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev2\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":6,\"y\":0},\"id\":10,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| + where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) + \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) + \\u003c= $__timeTo\\r\\n| where tolower(subscriptionId) == tolower(\\\"$sub\\\") + and properties.essentials.targetResourceGroup in~ ($rg) and properties.essentials.monitorCondition + in~ ($mc)\\r\\nand properties.essentials.alertState in~ ($as) and properties.essentials.severity + in~ ($sev) and properties.essentials.severity == \\\"Sev2\\\" \\r\\n| summarize + count()\"},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"queryType\":\"Azure + Resource Graph\",\"refId\":\"A\",\"subscription\":\"\",\"subscriptions\":[\"$sub\"]}],\"transformations\":[{\"id\":\"organize\",\"options\":{\"excludeByName\":{},\"indexByName\":{},\"renameByName\":{\"count_\":\"Warning\"}}}],\"type\":\"stat\"},{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"blue\",\"mode\":\"fixed\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Informational\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev3\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":8,\"y\":0},\"id\":12,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| + where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) + \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) + \\u003c= $__timeTo\\r\\n| where tolower(subscriptionId) == tolower(\\\"$sub\\\") + and properties.essentials.targetResourceGroup in~ ($rg) and properties.essentials.monitorCondition + in~ ($mc)\\r\\nand properties.essentials.alertState in~ ($as) and properties.essentials.severity + in~ ($sev) and properties.essentials.severity == \\\"Sev3\\\" \\r\\n| summarize + count()\"},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"queryType\":\"Azure + Resource Graph\",\"refId\":\"A\",\"subscription\":\"\",\"subscriptions\":[\"$sub\"]}],\"transformations\":[{\"id\":\"organize\",\"options\":{\"excludeByName\":{},\"indexByName\":{},\"renameByName\":{\"count_\":\"Informational\"}}}],\"type\":\"stat\"},{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"fixedColor\":\"purple\",\"mode\":\"fixed\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Verbose\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev4\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":10,\"y\":0},\"id\":14,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| + where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) + \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) + \\u003c= $__timeTo\\r\\n| where tolower(subscriptionId) == tolower(\\\"$sub\\\") + and properties.essentials.targetResourceGroup in~ ($rg) and properties.essentials.monitorCondition + in~ ($mc)\\r\\nand properties.essentials.alertState in~ ($as) and properties.essentials.severity + in~ ($sev) and properties.essentials.severity == \\\"Sev4\\\" \\r\\n| summarize + count()\"},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"queryType\":\"Azure + Resource Graph\",\"refId\":\"A\",\"subscription\":\"\",\"subscriptions\":[\"$sub\"]}],\"transformations\":[{\"id\":\"organize\",\"options\":{\"excludeByName\":{},\"indexByName\":{},\"renameByName\":{\"count_\":\"Verbose\"}}}],\"type\":\"stat\"},{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"continuous-BlYlRd\"},\"custom\":{\"align\":\"center\",\"displayMode\":\"auto\",\"filterable\":true},\"links\":[],\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80.0002}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Severity\"},\"properties\":[{\"id\":\"mappings\",\"value\":[{\"options\":{\"\\\"Sev0\\\"\":{\"color\":\"red\",\"index\":4,\"text\":\"Critical\"},\"\\\"Sev1\\\"\":{\"color\":\"orange\",\"index\":3,\"text\":\"Error\"},\"\\\"Sev2\\\"\":{\"color\":\"yellow\",\"index\":2,\"text\":\"Warning\"},\"\\\"Sev3\\\"\":{\"color\":\"blue\",\"index\":1,\"text\":\"Informational\"},\"\\\"Sev4\\\"\":{\"color\":\"#8F3BB8\",\"index\":0,\"text\":\"Verbose\"}},\"type\":\"value\"}]},{\"id\":\"custom.displayMode\",\"value\":\"color-background-solid\"}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Name\"},\"properties\":[{\"id\":\"custom.displayMode\",\"value\":\"color-text\"},{\"id\":\"links\",\"value\":[{\"targetBlank\":true,\"title\":\"test + title\",\"url\":\"https://ms.portal.azure.com/#blade/Microsoft_Azure_Monitoring/AlertDetailsTemplateBlade/alertId/%2Fsubscriptions%2F${sub}%2Fresourcegroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%2Fproviders%2FMicrosoft.AlertsManagement%2Falerts%2F${__data.fields[\\\"Alert + ID\\\"]}\"}]}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"properties_essentials_monitorCondition\"},\"properties\":[{\"id\":\"mappings\",\"value\":[{\"options\":{\"Fired\":{\"color\":\"orange\",\"index\":1},\"Resolved\":{\"color\":\"green\",\"index\":0}},\"type\":\"value\"}]},{\"id\":\"custom.displayMode\",\"value\":\"basic\"}]}]},\"gridPos\":{\"h\":16,\"w\":24,\"x\":0,\"y\":4},\"id\":2,\"links\":[],\"options\":{\"footer\":{\"fields\":\"\",\"reducer\":[\"sum\"],\"show\":false},\"frameIndex\":0,\"showHeader\":true,\"sortBy\":[]},\"targets\":[{\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| + join kind=leftouter (ResourceContainers | where type=='microsoft.resources/subscriptions' + | project SubName=name, subscriptionId) on subscriptionId\\r\\n| where type + == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where tolower(subscriptionId) + == tolower(\\\"$sub\\\") and properties.essentials.targetResourceGroup in~ + ($rg) and properties.essentials.monitorCondition in~ ($mc)\\r\\nand properties.essentials.alertState + in~ ($as) and properties.essentials.severity in~ ($sev)\\r\\nand todatetime(properties.essentials.lastModifiedDateTime) + \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) + \\u003c= $__timeTo\\r\\n| parse id with * \\\"alerts/\\\" alertId\\r\\n| project + name, properties.essentials.severity, tostring(properties.essentials.monitorCondition), + \\r\\ntostring(properties.essentials.alertState), todatetime(properties.essentials.lastModifiedDateTime), + tostring(properties.essentials.monitorService), alertId\\r\\n\",\"resultFormat\":\"table\"},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"insightsAnalytics\":{\"query\":\"\",\"resultFormat\":\"time_series\"},\"queryType\":\"Azure + Resource Graph\",\"refId\":\"A\",\"subscription\":\"\",\"subscriptions\":[\"$sub\"]}],\"title\":\"V1 + Alerts\",\"transformations\":[{\"id\":\"organize\",\"options\":{\"excludeByName\":{\"alertId\":false},\"indexByName\":{\"alertId\":6,\"name\":0,\"properties_essentials_alertState\":3,\"properties_essentials_lastModifiedDateTime\":5,\"properties_essentials_monitorCondition\":2,\"properties_essentials_monitorService\":4,\"properties_essentials_severity\":1},\"renameByName\":{\"alertId\":\"Alert + ID\",\"name\":\"Name\",\"properties_essentials_alertState\":\"User Response\",\"properties_essentials_lastModifiedDateTime\":\"Fired + Time\",\"properties_essentials_monitorCondition\":\"Alert Condition\",\"properties_essentials_monitorService\":\"Monitor + Service\",\"properties_essentials_severity\":\"Severity\"}}}],\"transparent\":true,\"type\":\"table\"}],\"refresh\":\"\",\"schemaVersion\":35,\"style\":\"dark\",\"tags\":[],\"templating\":{\"list\":[{\"current\":{},\"hide\":0,\"includeAll\":false,\"label\":\"Datasource\",\"multi\":false,\"name\":\"ds\",\"options\":[],\"query\":\"grafana-azure-monitor-datasource\",\"queryValue\":\"\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"type\":\"datasource\"},{\"current\":{},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"definition\":\"subscriptions()\",\"hide\":0,\"includeAll\":false,\"label\":\"Subscription\",\"multi\":false,\"name\":\"sub\",\"options\":[],\"query\":\"subscriptions()\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"type\":\"query\"},{\"current\":{},\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"definition\":\"ResourceGroups($sub)\",\"hide\":0,\"includeAll\":false,\"label\":\"Resource + Group(s)\",\"multi\":true,\"name\":\"rg\",\"options\":[],\"query\":\"ResourceGroups($sub)\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"type\":\"query\"},{\"current\":{\"selected\":false,\"text\":[\"Fired\",\"Resolved\"],\"value\":[\"Fired\",\"Resolved\"]},\"hide\":0,\"includeAll\":false,\"label\":\"Alert + Condition\",\"multi\":true,\"name\":\"mc\",\"options\":[{\"selected\":true,\"text\":\"Fired\",\"value\":\"Fired\"},{\"selected\":true,\"text\":\"Resolved\",\"value\":\"Resolved\"}],\"query\":\"Fired, + Resolved\",\"queryValue\":\"\",\"skipUrlSync\":false,\"type\":\"custom\"},{\"current\":{\"selected\":false,\"text\":[\"New\",\"Acknowledged\",\"Closed\"],\"value\":[\"New\",\"Acknowledged\",\"Closed\"]},\"hide\":0,\"includeAll\":false,\"label\":\"User + Response\",\"multi\":true,\"name\":\"as\",\"options\":[{\"selected\":true,\"text\":\"New\",\"value\":\"New\"},{\"selected\":true,\"text\":\"Acknowledged\",\"value\":\"Acknowledged\"},{\"selected\":true,\"text\":\"Closed\",\"value\":\"Closed\"}],\"query\":\"New, + Acknowledged, Closed\",\"queryValue\":\"\",\"skipUrlSync\":false,\"type\":\"custom\"},{\"current\":{\"selected\":false,\"text\":[\"Critical\",\"Error\",\"Warning\",\"Informational\",\"Verbose\"],\"value\":[\"Sev0\",\"Sev1\",\"Sev2\",\"Sev3\",\"Sev4\"]},\"hide\":0,\"includeAll\":false,\"label\":\"Severity\",\"multi\":true,\"name\":\"sev\",\"options\":[{\"selected\":true,\"text\":\"Critical\",\"value\":\"Sev0\"},{\"selected\":true,\"text\":\"Error\",\"value\":\"Sev1\"},{\"selected\":true,\"text\":\"Warning\",\"value\":\"Sev2\"},{\"selected\":true,\"text\":\"Informational\",\"value\":\"Sev3\"},{\"selected\":true,\"text\":\"Verbose\",\"value\":\"Sev4\"}],\"query\":\"Critical + : Sev0, Error : Sev1, Warning : Sev2, Informational : Sev3, Verbose : Sev4\",\"queryValue\":\"\",\"skipUrlSync\":false,\"type\":\"custom\"}]},\"time\":{\"from\":\"now-30d\",\"to\":\"now\"},\"timepicker\":{\"hidden\":false,\"refresh_intervals\":[\"30m\",\"1h\",\"12h\",\"24h\",\"3d\",\"7d\",\"30d\"]},\"title\":\"Azure + / Alert Consumption\",\"uid\":\"dyzn5SK7z\",\"version\":2}}" + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6n7IQzuPLyvavlmLz7VHAg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574413.086.437.402523|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Yo38mcvnz + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsights.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time + series","type":"panel","version":""}],"description":"The dashboard provides + insights of Azure Apps via different metrics for app monitoring through Application + Insights.","editable":true,"id":9,"links":[],"liveNow":false,"panels":[{"collapsed":false,"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":52,"panels":[],"title":"Azure + Portal Links","type":"row"},{"gridPos":{"h":3,"w":5,"x":0,"y":1},"id":10,"options":{"content":"\u003ca + style=\"color: inherit;\" href=\"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/overview\" + target=\"_blank\"\u003e\n \u003cdiv\u003e\n \u003ch3 style=\"color: #a16feb\"\u003e + ${res} \u003c/h1\u003e\n \u003ch5 style=\"margin-bottom: 0px;\"\u003e Application + Insights \u003c/h5\u003e\n \u003c/div\u003e\n\u003c/a\u003e","mode":"html"},"type":"text"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"text","mode":"fixed"},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Availability"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/availability"}]}]}]},"gridPos":{"h":3,"w":2,"x":5,"y":1},"id":40,"options":{"colorMode":"value","graphMode":"none","justifyMode":"center","orientation":"vertical","reduceOptions":{"calcs":["lastNotNull"],"fields":"/^Availability$/","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"availabilityResults/availabilityPercentage","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Availability","type":"stat"},{"gridPos":{"h":3,"w":4,"x":7,"y":1},"id":44,"links":[],"options":{"content":"\u003ca + style=\"color: inherit;\" href=\"https://portal.azure.com/#blade/AppInsightsExtension/ProactiveDetectionFeedBlade/ComponentId/%7B%22Name%22%3A%22${res}%22%2C%22SubscriptionId%22%3A%22${sub}%22%2C%22ResourceGroup%22%3A%22${rg}%22%7D/TimeContext/%7B%22durationMs%22%3A604800000%2C%22endTime%22%3Anull%2C%22createdTime%22%3A%222021-10-18T19%3A26%3A58.876Z%22%2C%22isInitialTime%22%3Atrue%2C%22grain%22%3A1%2C%22useDashboardTimeRange%22%3Afalse%7D\" + target=\"_blank\"\u003e\n\u003cdiv style=\"padding-top: 20px\"\u003e\n \u003ccenter\u003e\u003cp + style=\"color: #4d99b8; font-size:18px;\"\u003eSmart detection\u003c/p\u003e\u003c/center\u003e\n \u003ccenter\u003e\u003cp + style=\"margin-top:0px;\"\u003e${res}\u003c/p\u003e\u003c/center\u003e\n\u003c/div\u003e\n\u003c/a\u003e","mode":"html"},"targets":[],"type":"text"},{"gridPos":{"h":3,"w":3,"x":11,"y":1},"id":46,"links":[],"options":{"content":"\u003ca + style=\"color: inherit;\" href=\"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/quickPulse\" + target=\"_blank\"\u003e\n\u003cdiv style=\"padding-top: 20px\"\u003e\n \u003ccenter\u003e\u003cp + style=\"color: #2272b9; font-size:18px;\"\u003eLive Metrics\u003c/p\u003e\u003c/center\u003e\n \u003ccenter\u003e\u003cp + style=\"margin-top:0px;\"\u003e${res}\u003c/p\u003e\u003c/center\u003e\n\u003c/div\u003e\n\u003c/a\u003e\n \n ","mode":"html"},"targets":[],"type":"text"},{"gridPos":{"h":3,"w":3,"x":14,"y":1},"id":42,"options":{"content":"\u003ca + style=\"color: inherit;\" href=\"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/applicationMap\" + target=\"_blank\"\u003e\n\u003cdiv style=\"padding-top: 20px;\"\u003e\n \u003ccenter\u003e\u003cp + style=\"position:center; color: #ff8c00; font-size:18px\"\u003eApp map\u003c/p\u003e\u003c/center\u003e\n \u003ccenter\u003e\u003cp + style=\"margin-top:0px;\"\u003e${res}\u003c/p\u003e\u003c/center\u003e\n\u003c/div\u003e\n\u003c/a\u003e\n ","mode":"html"},"targets":[],"type":"text"},{"collapsed":false,"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":4},"id":54,"panels":[],"title":"Application + Insights","type":"row"},{"gridPos":{"h":3,"w":4,"x":0,"y":5},"id":12,"options":{"content":"\u003ch1 + style=\"font-size: 20px; color:#73bf69;\"\u003e Usage \u003c/h1\u003e","mode":"html"},"targets":[],"type":"text"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"users/count_unique"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"${res} | + Users","url":"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/segmentationUsers"}]},{"id":"displayName","value":"Users"}]}]},"gridPos":{"h":3,"w":2,"x":4,"y":5},"id":48,"options":{"colorMode":"background","graphMode":"none","justifyMode":"center","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"union\n (traces\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (requests\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (pageViews\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (dependencies\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (customEvents\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (availabilityResults\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (exceptions\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (customMetrics\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (browserTimings\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo)\n| where + notempty(user_Id)\n| summarize [''users/count_unique''] = dcount(user_Id) + by bin(timestamp, 1m)\n| order by timestamp desc","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res","resultFormat":"time_series"},"queryType":"Azure + Log Analytics","refId":"B","subscription":"$sub","subscriptions":[]}],"transformations":[],"type":"stat"},{"gridPos":{"h":3,"w":4,"x":6,"y":5},"id":14,"options":{"content":"\u003ch1 + style=\"font-size:20px; color:#ec008c;\"\u003eReliability\u003c/h1\u003e","mode":"html"},"targets":[],"type":"text"},{"gridPos":{"h":3,"w":2,"x":10,"y":5},"id":36,"links":[],"options":{"content":"\u003ca + href=\"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/failures\" + target=\"_blank\"\u003e\n\u003cdiv\u003e\n \u003cp style=\"font-size:16px; + margin-bottom:0px; margin-top:0px;\"\u003e Failures \u003c/p\u003e\n \u003cp + style=\"margin-top: 0px;\"\u003e${res}\u003c/p\u003e\n\u003c/div\u003e\n\u003c/a\u003e\n","mode":"html"},"targets":[],"type":"text"},{"gridPos":{"h":3,"w":3,"x":12,"y":5},"id":17,"options":{"content":"\u003ch1 + style=\"font-size:20px; color:#7e58ff;\"\u003eResponsiveness\u003c/h1\u003e","mode":"html"},"targets":[],"type":"text"},{"gridPos":{"h":3,"w":3,"x":15,"y":5},"id":38,"links":[],"options":{"content":"\u003ca + href=\"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/performance\" + target=\"_blank\"\u003e\n\u003cdiv\u003e\n \u003cp style=\"font-size:16px; + margin-bottom:0px;margin-top:0px;\"\u003e Performance \u003c/p\u003e\n \u003cp + style=\"margin-top:0px;\"\u003e${res}\u003c/p\u003e\n\u003c/div\u003e\n\u003c/a\u003e\n","mode":"html"},"targets":[],"type":"text"},{"gridPos":{"h":3,"w":4,"x":18,"y":5},"id":18,"options":{"content":"\u003ch1 + style=\"font-size:20px; color:#3274d9;\"\u003eBrowser\u003c/h1\u003e","mode":"html"},"targets":[],"type":"text"},{"gridPos":{"h":3,"w":2,"x":22,"y":5},"id":50,"options":{"content":"\u003ca + style=\"color: #ffffff;\" href=\"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/id/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/detailBlade/MetricsExplorerBlade/sourceExtension/AppInsightsExtension/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A86400000%7D%2C%22grain%22%3A1%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Afalse%7D%7D/Chart/%7B%22v2charts%22%3A%5B%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%2C%22sku%22%3A%7B%22name%22%3A%22${res}%22%7D%7D%2C%22metricVisualization%22%3A%7B%22resourceDisplayName%22%3A%22pageViews%2Fduration%22%2C%22color%22%3A%22msportalfx-bgcolor-g2%22%7D%2C%22name%22%3A%22pageViews%2Fduration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%2Fkusto%22%2C%22aggregationType%22%3A4%7D%5D%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22axisVisualization%22%3A%7B%22y%22%3A%7B%22isVisible%22%3Atrue%7D%7D%7D%2C%22grouping%22%3A%7B%22dimension%22%3A%22operation%2Fname%22%7D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%7B%22key%22%3A%22client%2Ftype%22%2C%22operator%22%3A0%2C%22values%22%3A%5B%22Browser%22%5D%7D%5D%7D%2C%22title%22%3A%22Browsers%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A86400000%7D%2C%22grain%22%3A1%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Afalse%7D%7D%7D%2C%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%2C%22sku%22%3A%7B%22name%22%3A%22${res}%22%7D%7D%2C%22metricVisualization%22%3A%7B%22resourceDisplayName%22%3A%22dependencies%2Fduration%22%2C%22color%22%3A%22msportalfx-bgcolor-g2%22%7D%2C%22name%22%3A%22dependencies%2Fduration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%2Fkusto%22%2C%22aggregationType%22%3A4%7D%5D%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22axisVisualization%22%3A%7B%22y%22%3A%7B%22isVisible%22%3Atrue%7D%7D%7D%2C%22grouping%22%3A%7B%22dimension%22%3A%22dependency%2Fname%22%7D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%7B%22key%22%3A%22client%2Ftype%22%2C%22operator%22%3A0%2C%22values%22%3A%5B%22Browser%22%5D%7D%5D%7D%2C%22title%22%3A%22Have%20AJAX%20calls%20been%20slow%3F%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A86400000%7D%2C%22grain%22%3A1%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Afalse%7D%7D%7D%2C%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%2C%22sku%22%3A%7B%22name%22%3A%22${res}%22%7D%7D%2C%22metricVisualization%22%3A%7B%22resourceDisplayName%22%3A%22pageViews%2Fcount%22%2C%22color%22%3A%22msportalfx-bgcolor-g2%22%7D%2C%22name%22%3A%22pageViews%2Fcount%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%2Fkusto%22%2C%22aggregationType%22%3A1%7D%5D%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22axisVisualization%22%3A%7B%22y%22%3A%7B%22isVisible%22%3Atrue%7D%7D%7D%2C%22grouping%22%3A%7B%22dimension%22%3A%22operation%2Fname%22%7D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%7B%22key%22%3A%22client%2Ftype%22%2C%22operator%22%3A0%2C%22values%22%3A%5B%22Browser%22%5D%7D%5D%7D%2C%22title%22%3A%22Has%20page%20view%20traffic%20changed%3F%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A86400000%7D%2C%22grain%22%3A1%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Afalse%7D%7D%7D%2C%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%2C%22sku%22%3A%7B%22name%22%3A%22${res}%22%7D%7D%2C%22metricVisualization%22%3A%7B%22resourceDisplayName%22%3A%22exceptions%2Fbrowser%22%2C%22color%22%3A%22msportalfx-bgcolor-g2%22%7D%2C%22name%22%3A%22exceptions%2Fbrowser%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%2Fkusto%22%2C%22aggregationType%22%3A1%7D%5D%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22axisVisualization%22%3A%7B%22y%22%3A%7B%22isVisible%22%3Atrue%7D%7D%7D%2C%22grouping%22%3A%7B%22dimension%22%3A%22exception%2FproblemId%22%7D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%7B%22key%22%3A%22client%2Ftype%22%2C%22operator%22%3A0%2C%22values%22%3A%5B%22Browser%22%5D%7D%5D%7D%2C%22title%22%3A%22When%20are%20script%20errors%20occurring%3F%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A86400000%7D%2C%22grain%22%3A1%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Afalse%7D%7D%7D%2C%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%2C%22sku%22%3A%7B%22name%22%3A%22${res}%22%7D%7D%2C%22metricVisualization%22%3A%7B%22resourceDisplayName%22%3A%22pageViews%2Fduration%22%2C%22color%22%3A%22msportalfx-bgcolor-g0%22%7D%2C%22name%22%3A%22pageViews%2Fduration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%2Fkusto%22%2C%22aggregationType%22%3A4%7D%5D%2C%22visualization%22%3A%7B%22chartType%22%3A5%2C%22axisVisualization%22%3A%7B%22y%22%3A%7B%22isVisible%22%3Atrue%7D%7D%7D%2C%22grouping%22%3A%7B%22dimension%22%3Afalse%7D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%7B%22key%22%3A%22client%2Ftype%22%2C%22operator%22%3A0%2C%22values%22%3A%5B%22Browser%22%5D%7D%5D%7D%2C%22title%22%3A%22What%20are%20my%20slowest%20pages%3F%22%7D%2C%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%2C%22sku%22%3A%7B%22name%22%3A%22${res}%22%7D%7D%2C%22metricVisualization%22%3A%7B%22resourceDisplayName%22%3A%22pageViews%2Fduration%22%7D%2C%22name%22%3A%22pageViews%2Fduration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%2Fkusto%22%2C%22aggregationType%22%3A4%7D%5D%2C%22visualization%22%3A%7B%22chartType%22%3A5%2C%22axisVisualization%22%3A%7B%22y%22%3A%7B%22isVisible%22%3Atrue%7D%7D%7D%2C%22grouping%22%3A%7B%22dimension%22%3Afalse%7D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%7B%22key%22%3A%22client%2Ftype%22%2C%22operator%22%3A0%2C%22values%22%3A%5B%22Browser%22%5D%7D%5D%7D%2C%22title%22%3A%22What%20are%20my%20slowest%20pages%3F%22%7D%2C%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%2C%22sku%22%3A%7B%22name%22%3A%22${res}%22%7D%7D%2C%22metricVisualization%22%3A%7B%22resourceDisplayName%22%3A%22exceptions%2Fbrowser%22%2C%22color%22%3A%22msportalfx-bgcolor-d0%22%7D%2C%22name%22%3A%22exceptions%2Fbrowser%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%2Fkusto%22%2C%22aggregationType%22%3A1%7D%5D%2C%22visualization%22%3A%7B%22chartType%22%3A5%2C%22axisVisualization%22%3A%7B%22y%22%3A%7B%22isVisible%22%3Atrue%7D%7D%7D%2C%22grouping%22%3A%7B%22dimension%22%3A%22exception%2FproblemId%22%7D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%7B%22key%22%3A%22client%2Ftype%22%2C%22operator%22%3A0%2C%22values%22%3A%5B%22Browser%22%5D%7D%5D%7D%2C%22title%22%3A%22What%20are%20my%20most%20common%20script%20errors%3F%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A86400000%7D%2C%22grain%22%3A1%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Afalse%7D%7D%7D%5D%7D/openInEditMode/\" + target=\"_blank\"\u003e\n\u003cdiv style=\"padding-top: 35px; background-color: + #3274d9; width: 100%; height: 100%\"\u003e\n \u003ccenter\u003e\u003cp style=\"font-size:16px; + margin-bottom:0px;\"\u003e Browsers \u003c/p\u003e\u003c/center\u003e\n\u003c/div\u003e\n\u003c/a\u003e","mode":"html"},"targets":[],"transparent":true,"type":"text"},{"datasource":{"uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e JSON Model. Edit as you''d like in your new copy + by going to Settings \u003e Save as.","fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"users/count_unique"},"properties":[{"id":"displayName","value":"Users + (Unique)"}]},{"matcher":{"id":"byName","options":"sessions/count_unique"},"properties":[{"id":"displayName","value":"Sessions + (Unique)"},{"id":"color","value":{"fixedColor":"purple","mode":"fixed"}}]}]},"gridPos":{"h":9,"w":6,"x":0,"y":8},"id":20,"interval":"60s","links":[{"targetBlank":true,"title":"${res} + | Users","url":"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/segmentationUsers"}],"maxDataPoints":150,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"union\n (traces\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (requests\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (pageViews\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (dependencies\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (customEvents\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (availabilityResults\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (exceptions\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (customMetrics\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\n (browserTimings\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo)\n| where + notempty(user_Id)\n| summarize [''users/count_unique''] = dcount(user_Id) + by bin(timestamp, $__interval)\n| order by timestamp desc","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res","resultFormat":"time_series"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub","subscriptions":[]},{"azureLogAnalytics":{"query":"union\r\n (traces\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (requests\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (pageViews\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (dependencies\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (customEvents\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (availabilityResults\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (exceptions\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (customMetrics\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo),\r\n (browserTimings\r\n | + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo)\r\n| where + notempty(session_Id)\r\n| summarize [''sessions/count_unique''] = dcount(session_Id) + by bin(timestamp, $__interval)\r\n| order by timestamp desc","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res","resultFormat":"time_series"},"hide":false,"queryType":"Azure + Log Analytics","refId":"B","subscription":""}],"title":"Users","transformations":[],"type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"#ec008c","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":6,"x":6,"y":8},"id":2,"links":[{"targetBlank":true,"title":"${res} + | Failures","url":"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/failures"}],"maxDataPoints":150,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"requests/failed","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Failed requests","subscription":"$sub","subscriptions":[]}],"title":"Failed + requests","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"#7e58ff","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":6,"x":12,"y":8},"id":4,"links":[{"targetBlank":true,"title":"${res} + | Performance","url":"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/performance"}],"maxDataPoints":150,"options":{"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"requests/duration","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Server + response time","transformations":[],"type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"semi-dark-blue","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":25,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":6,"x":18,"y":8},"id":6,"links":[{"targetBlank":true,"title":"${res} + | Page Views","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Afalse%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22pageViews%2Fcount%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Page%20views%22%7D%2C%22aggregationType%22%3A7%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Count%20Page%20views%20for%20${res}%22%2C%22titleKind%22%3A1%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Afalse%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":150,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"pageViews/count","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Page + Views","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","axisWidth":50,"barAlignment":0,"drawStyle":"line","fillOpacity":14,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":2,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"links":[],"mappings":[],"max":100,"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Availability"},"properties":[{"id":"links","value":[]}]}]},"gridPos":{"h":10,"w":6,"x":0,"y":17},"id":8,"links":[{"targetBlank":true,"title":"${res} + | Availability","url":"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/availability"}],"maxDataPoints":150,"options":{"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"availabilityResults/availabilityPercentage","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Average + availability","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"dark-purple","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[{"options":{"match":"null","result":{"index":0,"text":"0"}},"type":"special"}],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Server + exceptions"},"properties":[{"id":"color","value":{"fixedColor":"#ec008c","mode":"fixed"}}]}]},"gridPos":{"h":10,"w":6,"x":6,"y":17},"id":24,"links":[{"targetBlank":true,"title":"${res} + | Server exceptions and Dependency failures","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Atrue%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22exceptions%2Fserver%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Server%20exceptions%22%2C%22color%22%3A%22%2347BDF5%22%7D%2C%22aggregationType%22%3A7%2C%22thresholds%22%3A%5B%5D%7D%2C%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22dependencies%2Ffailed%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Dependency%20failures%22%2C%22color%22%3A%22%237E58FF%22%7D%2C%22aggregationType%22%3A7%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Server%20exceptions%20and%20Dependency%20failures%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Atrue%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":150,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Count","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"exceptions/server","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Server Exceptions","subscription":"$sub","subscriptions":[]},{"azureMonitor":{"aggOptions":[],"aggregation":"Count","alias":"Dependency + failures","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"dependencies/failed","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Dependency failures","subscription":"$sub","subscriptions":[]}],"title":"Server + exceptions and Dependency failures","transformations":[],"type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"#7e58ff","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","axisSoftMax":-6,"axisSoftMin":0,"axisWidth":50,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":12,"y":17},"id":28,"links":[{"targetBlank":true,"title":"${res} + | Average processor and process CPU utilization","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Atrue%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22performanceCounters%2FprocessorCpuPercentage%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Processor%20time%22%2C%22color%22%3A%22%2347BDF5%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%2C%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22performanceCounters%2FprocessCpuPercentage%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Process%20CPU%22%2C%22color%22%3A%22%237E58FF%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Average%20processor%20and%20process%20CPU%20utilization%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Atrue%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":150,"options":{"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"performanceCounters/processorCpuPercentage","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Processor","subscription":"$sub","subscriptions":[]},{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"performanceCounters/processCpuPercentage","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Process CPU","subscription":"$sub","subscriptions":[]}],"title":"Average + processor and process CPU utilization","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"#5794F2","mode":"continuous-BlPu"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":16,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"normal"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Page + load network connect time"},"properties":[{"id":"color","value":{"fixedColor":"dark-blue","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Client + processing time"},"properties":[{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Send + request time"},"properties":[{"id":"color","value":{"fixedColor":"purple","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Receiving + response time"},"properties":[{"id":"color","value":{"fixedColor":"orange","mode":"fixed"}}]}]},"gridPos":{"h":10,"w":6,"x":18,"y":17},"id":32,"links":[{"targetBlank":true,"title":"${res} + | Average page load time breakdown","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Atrue%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22browserTimings%2FnetworkDuration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Page%20load%20network%20connect%20time%22%2C%22color%22%3A%22%237E58FF%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%2C%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22browserTimings%2FprocessingDuration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Client%20processing%20time%22%2C%22color%22%3A%22%2344F1C8%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%2C%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22browserTimings%2FsendDuration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Send%20request%20time%22%2C%22color%22%3A%22%23EB9371%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%2C%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22browserTimings%2FreceiveDuration%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Receiving%20response%20time%22%2C%22color%22%3A%22%230672F1%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A3%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Average%20page%20load%20time%20breakdown%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Atrue%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":150,"options":{"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"browserTimings/networkDuration","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Page load network connect time","subscription":"$sub","subscriptions":[]},{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"browserTimings/processingDuration","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Client processing time","subscription":"$sub","subscriptions":[]},{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"browserTimings/sendDuration","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Send request time","subscription":"$sub","subscriptions":[]},{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"browserTimings/receiveDuration","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"Receiving response time","subscription":"$sub","subscriptions":[]}],"title":"Average + page load time breakdown","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":27},"id":22,"links":[{"targetBlank":true,"title":"${res} + | Availability test results count","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Atrue%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22availabilityResults%2Fcount%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Availability%20test%20results%20count%22%2C%22color%22%3A%22%2347BDF5%22%7D%2C%22aggregationType%22%3A7%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Availability%20test%20results%20count%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Atrue%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":150,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"availabilityResults/count","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Availability + test results count","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"#ec008c","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":6,"y":27},"id":26,"links":[{"targetBlank":true,"title":"${res} + | Average process I/O rate","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Atrue%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22performanceCounters%2FprocessIOBytesPerSecond%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Process%20IO%20rate%22%2C%22color%22%3A%22%2347BDF5%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Average%20process%20I%2FO%20rate%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Atrue%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":100,"options":{"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"performanceCounters/processIOBytesPerSecond","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"100"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Average + process I/O rate","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"#7e58ff","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"axisWidth":80,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":12,"y":27},"id":30,"links":[{"targetBlank":true,"title":"${res} + | Average available memory","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Atrue%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22performanceCounters%2FmemoryAvailableBytes%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Available%20memory%22%2C%22color%22%3A%22%2347BDF5%22%7D%2C%22aggregationType%22%3A4%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Average%20available%20memory%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Atrue%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":150,"options":{"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"microsoft.insights/components","metricName":"performanceCounters/memoryAvailableBytes","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Average + available memory","type":"timeseries"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"blue","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"axisWidth":50,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":18,"y":27},"id":34,"links":[{"targetBlank":true,"title":"${res} + | Browser exceptions","url":"https://portal.azure.com/#blade/Microsoft_Azure_MonitoringMetrics/Metrics.ReactView/ResourceId/%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}/TimeContext/%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22options%22%3A%7B%22grain%22%3A1%2C%22showUTCTime%22%3Atrue%7D%7D/Chart/%7B%22metrics%22%3A%5B%7B%22resourceMetadata%22%3A%7B%22id%22%3A%22%2Fsubscriptions%2F${sub}%2FresourceGroups%2F${rg}%2Fproviders%2Fmicrosoft.insights%2Fcomponents%2F${res}%22%7D%2C%22name%22%3A%22exceptions%2Fbrowser%22%2C%22namespace%22%3A%22microsoft.insights%2Fcomponents%22%2C%22metricVisualization%22%3A%7B%22displayName%22%3A%22Browser%20exceptions%22%2C%22color%22%3A%22%2347BDF5%22%7D%2C%22aggregationType%22%3A7%2C%22thresholds%22%3A%5B%5D%7D%5D%2C%22filterCollection%22%3A%7B%22filters%22%3A%5B%5D%7D%2C%22grouping%22%3Anull%2C%22visualization%22%3A%7B%22chartType%22%3A2%2C%22legendVisualization%22%3A%7B%22isVisible%22%3Atrue%2C%22position%22%3A2%2C%22hideSubtitle%22%3Afalse%7D%2C%22axisVisualization%22%3A%7B%22x%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A2%7D%2C%22y%22%3A%7B%22isVisible%22%3Atrue%2C%22axisType%22%3A1%7D%7D%2C%22disablePinning%22%3Atrue%7D%2C%22title%22%3A%22Browser%20exceptions%22%2C%22timespan%22%3A%7B%22relative%22%3A%7B%22duration%22%3A1800000%7D%2C%22showUTCTime%22%3Atrue%2C%22grain%22%3A1%7D%2C%22ariaLabel%22%3Anull%7D/openInEditMode/true"}],"maxDataPoints":150,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":[],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"metricDefinition":"Microsoft.Insights/components","metricName":"exceptions/browser","metricNamespace":"microsoft.insights/components","resourceGroup":"$rg","resourceName":"$res","timeGrain":"auto","timeGrains":[],"top":"50"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"Browser + exceptions","type":"timeseries"}],"refresh":"","schemaVersion":36,"style":"dark","tags":[],"templating":{"list":[{"current":{},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"current":{},"datasource":{"uid":"${ds}"},"definition":"Subscriptions()","hide":0,"includeAll":false,"label":"Subscription","multi":false,"name":"sub","options":[],"query":"Subscriptions()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"uid":"${ds}"},"definition":"ResourceGroups($sub)","hide":0,"includeAll":false,"label":"Resource + Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"uid":"${ds}"},"definition":"Namespaces($sub, + $rg)","hide":2,"includeAll":false,"label":"Namespace","multi":false,"name":"ns","options":[],"query":"Namespaces($sub, + $rg)","refresh":1,"regex":"([mM](icrosoft)\\.[iI](nsights)/(components))","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"uid":"${ds}"},"definition":"ResourceNames($sub, + $rg, $ns)","hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"res","options":[],"query":"ResourceNames($sub, + $rg, $ns)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"resources\n| + project tenantId","hide":2,"includeAll":false,"label":"tenantId","multi":false,"name":"tenant","options":[],"query":{"azureLogAnalytics":{"query":"","resource":""},"azureResourceGraph":{"query":"Resources\r\n|project + tenantId"},"queryType":"Azure Resource Graph","refId":"A","subscriptions":["$sub"]},"refresh":1,"regex":"","skipUrlSync":false,"sort":5,"type":"query"}]},"time":{"from":"now-30m","to":"now"},"title":"Azure + / Insights / Applications","uid":"Yo38mcvnz","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-HtkDlY/pC8P37oLvkwroNg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574413.323.440.161442|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AppInsightsAvTestGeoMap + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-11T22:34:26Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsightsGeoMap.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"geomap","name":"Geomap","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"timeseries","name":"Time + series","type":"panel","version":""}],"editable":true,"id":2,"iteration":null,"liveNow":false,"panels":[{"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":18,"options":{"content":"\u003cdiv + style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003e This dashboard + helps you visualize data on availability tests for your Application Insights. + Note that even if you have an App Insights resource configured, if you have + no tests configured for it, no data will show. You can configure the following:\u003c/p\u003e\n \u003cul + style=\"display: inline-block; text-align:left\"\u003e\n\n \u003cli\u003eThe + regions (Select one or more)\u003c/li\u003e\n\n \u003cli\u003eThe Availability + tests (Select one or more)\u003c/li\u003e\n\n \u003cli\u003eThe colors + and thresholds in the Geo Maps to make the dashboard more relevant to your + environment.\u003c/li\u003e\n \u003c/ul\u003e\n\u003c/div\u003e","mode":"html"},"type":"text"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"hideFrom":{"legend":false,"tooltip":false,"viz":false}},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"green","value":100}]},"unit":"percent"},"overrides":[{"matcher":{"id":"byName","options":"avg_percentage"},"properties":[{"id":"unit","value":"percent"},{"id":"min","value":0},{"id":"max","value":100},{"id":"thresholds","value":{"mode":"absolute","steps":[{"color":"red","value":null},{"color":"green","value":100}]}}]},{"matcher":{"id":"byName","options":"latitude"},"properties":[{"id":"unit","value":"degree"}]},{"matcher":{"id":"byName","options":"latitude"},"properties":[{"id":"unit","value":"degree"}]}]},"gridPos":{"h":15,"w":14,"x":0,"y":0},"id":10,"options":{"basemap":{"config":{},"name":"Layer + 0","type":"default"},"controls":{"mouseWheelZoom":true,"showAttribution":true,"showDebug":false,"showScale":false,"showZoom":true},"layers":[{"config":{"showLegend":true,"style":{"color":{"field":"avg_percentage","fixed":"dark-green"},"opacity":0.4,"rotation":{"fixed":0,"max":360,"min":-360,"mode":"mod"},"size":{"field":"avg_percentage","fixed":5,"max":15,"min":2},"symbol":{"fixed":"img/icons/marker/circle.svg","mode":"fixed"},"textConfig":{"fontSize":12,"offsetX":0,"offsetY":0,"textAlign":"center","textBaseline":"middle"}}},"location":{"mode":"auto"},"name":"Layer + 1","tooltip":true,"type":"markers"}],"view":{"id":"zero","lat":0,"lon":0,"zoom":1}},"targets":[{"azureLogAnalytics":{"query":"let + regToCoords = dynamic({\r\n \"East Asia\":\r\n {\r\n \"latitude\": + 22.267,\r\n \"longitude\": 114.188\r\n },\r\n \"Southeast Asia\":\r\n {\r\n \"latitude\": + 1.283,\r\n \"longitude\": 103.833\r\n },\r\n \"Central US\":\r\n {\r\n \"latitude\": + 41.5908,\r\n \"longitude\": -93.6208\r\n },\r\n \"East US\":\r\n {\r\n \"latitude\": + 37.3719,\r\n \"longitude\": -79.8164\r\n },\r\n \"East US 2\":\r\n {\r\n \"latitude\": + 36.6681,\r\n \"longitude\": -78.3889\r\n },\r\n \"West US\":\r\n {\r\n \"latitude\": + 37.783,\r\n \"longitude\": -122.417\r\n },\r\n \"North Central + US\":\r\n {\r\n \"latitude\": 41.8819,\r\n \"longitude\": -87.6278\r\n },\r\n \"South + Central US\":\r\n {\r\n \"latitude\": 29.4167,\r\n \"longitude\": + -98.5\r\n },\r\n \"North Europe\":\r\n {\r\n \"latitude\": 53.3478,\r\n \"longitude\": + -6.2597\r\n },\r\n \"West Europe\":\r\n {\r\n \"latitude\": + 52.3667,\r\n \"longitude\": 4.9\r\n },\r\n \"Japan West\":\r\n {\r\n \"latitude\": + 34.6939,\r\n \"longitude\": 135.5022\r\n },\r\n \"Japan East\":\r\n {\r\n \"latitude\": + 35.68,\r\n \"longitude\": 139.77\r\n },\r\n \"Brazil South\":\r\n {\r\n \"latitude\": + -23.55,\r\n \"longitude\": -46.633\r\n },\r\n \"Australia East\" + : \r\n {\r\n \"latitude\": -33.86, \r\n \"longitude\": 151.2094\r\n }, + \r\n \"Australia Southeast\":\r\n {\r\n \"latitude\": -37.8136,\r\n \"longitude\": + 144.9631\r\n },\r\n \"South India\":\r\n {\r\n \"latitude\": + 12.9822,\r\n \"longitude\": 80.1636\r\n },\r\n \"Central India\":\r\n {\r\n \"latitude\": + 18.5822,\r\n \"longitude\": 73.9197\r\n },\r\n \"West India\":\r\n {\r\n \"latitude\": + 19.088,\r\n \"longitude\": 72.868\r\n },\r\n \"Canada Central\":\r\n {\r\n \"latitude\": + 43.653,\r\n \"longitude\": -79.383\r\n },\r\n \"Canada East\":\r\n {\r\n \"latitude\": + 46.817,\r\n \"longitude\": -71.217\r\n },\r\n \"UK South\":\r\n {\r\n \"latitude\": + 50.941,\r\n \"longitude\": -0.799\r\n },\r\n \"UK West\": \r\n {\r\n \"latitude\": + 53.427, \r\n \"longitude\": -3.084\r\n },\r\n \"West Central US\": + \r\n {\r\n \"latitude\": 40.890, \r\n \"longitude\": -110.234\r\n },\r\n \"West + US 2\": \r\n {\r\n \"latitude\": 47.233, \r\n \"longitude\": + -119.852\r\n },\r\n \"Korea Central\": \r\n {\r\n \"latitude\": + 37.5665, \r\n \"longitude\": 126.9780\r\n },\r\n \"Korea South\": + \r\n {\r\n \"latitude\": 35.1796, \r\n \"longitude\": 129.0756\r\n },\r\n \"France + Central\": \r\n {\r\n \"latitude\": 46.3772, \r\n \"longitude\": + 2.3730\r\n },\r\n \"France South\": \r\n {\r\n \"latitude\": + 43.8345, \r\n \"longitude\": 2.1972\r\n },\r\n \"Australia Central\": + \r\n {\r\n \"latitude\": -35.3075, \r\n \"longitude\": 149.1244\r\n },\r\n \"Australia + Central 2\": \r\n {\r\n \"latitude\": -35.3075, \r\n \"longitude\": + 149.1244\r\n },\r\n \"UAE Central\": \r\n {\r\n \"latitude\": + 24.466667, \r\n \"longitude\": 54.366669\r\n },\r\n \"UAE North\": + \r\n {\r\n \"latitude\": 25.266666, \r\n \"longitude\": 55.316666\r\n },\r\n \"South + Africa North\": \r\n {\r\n \"latitude\": -25.731340, \r\n \"longitude\": + 28.218370\r\n },\r\n \"South Africa West\": \r\n {\r\n \"latitude\": + -34.075691, \r\n \"longitude\": 18.843266\r\n }\r\n});\r\navailabilityResults\r\n| + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo\r\n| where + name in ($avTest) and true and location in ($reg)\r\n| extend latitude = tostring(regToCoords[location][\"latitude\"])\r\n| + extend longitude = tostring(regToCoords[location][\"longitude\"])\r\n| extend + percentage = toint(success) * 100\r\n| summarize avg(percentage) by name, + location, latitude, longitude","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Availability test: + ${avTest}","type":"geomap"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + dashboard provides geographic insights of availability tests on Azure Apps + via different metrics for app monitoring through Application Insights.","fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"fixed"},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"avTestResults"},"properties":[{"id":"displayName","value":"Successful"}]}]},"gridPos":{"h":4,"w":5,"x":14,"y":0},"id":14,"options":{"colorMode":"background","graphMode":"none","justifyMode":"center","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"value_and_name"},"targets":[{"azureLogAnalytics":{"query":"availabilityResults\r\n| + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo\r\n| where + name in ($avTest) and success == 1 and location in ($reg)\r\n| summarize [''avTestResults''] + = sum(itemCount) by success","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"transparent":true,"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"red","mode":"fixed"},"mappings":[],"noValue":"--","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"avTestResults"},"properties":[{"id":"displayName","value":"Failed"}]}]},"gridPos":{"h":4,"w":5,"x":19,"y":0},"id":16,"options":{"colorMode":"background","graphMode":"area","justifyMode":"center","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"textMode":"value_and_name"},"targets":[{"azureLogAnalytics":{"query":"availabilityResults\r\n| + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo\r\n| where + name in ($avTest) and success == 0 and location in ($reg)\r\n| summarize [''avTestResults''] + = sum(itemCount) by success","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"transparent":true,"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":4,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"max":100,"thresholds":{"mode":"absolute","steps":[{"color":"red","value":null},{"color":"yellow","value":50},{"color":"green","value":100}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":11,"w":10,"x":14,"y":4},"id":12,"options":{"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"availabilityResults\r\n| + where timestamp \u003e $__timeFrom and timestamp \u003c $__timeTo \r\n| where + true and name in ($avTest)\r\n| extend percentage = toint(success) * 100\r\n| + summarize avg(percentage) by name, bin(timestamp, 1h)\r\n| sort by timestamp + asc\r\n| render timechart","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Availability test + : ${avTest}","transformations":[{"id":"renameByRegex","options":{"regex":"(.*)\\s(.*)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"dark-blue","mode":"fixed"},"custom":{"hideFrom":{"legend":false,"tooltip":false,"viz":false}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"red","value":null},{"color":"green","value":288}]}},"overrides":[{"matcher":{"id":"byName","options":"latitude"},"properties":[{"id":"unit","value":"degree"}]},{"matcher":{"id":"byName","options":"longitude"},"properties":[{"id":"unit","value":"degree"}]}]},"gridPos":{"h":15,"w":14,"x":0,"y":15},"id":8,"options":{"basemap":{"config":{},"name":"Layer + 0","type":"default"},"controls":{"mouseWheelZoom":true,"showAttribution":true,"showDebug":false,"showScale":false,"showZoom":true},"layers":[{"config":{"showLegend":true,"style":{"color":{"field":"avTestResults","fixed":"dark-green"},"opacity":0.4,"rotation":{"fixed":0,"max":360,"min":-360,"mode":"mod"},"size":{"field":"avTestResults","fixed":5,"max":15,"min":2},"symbol":{"fixed":"img/icons/marker/circle.svg","mode":"fixed"},"text":{"fixed":"","mode":"field"},"textConfig":{"fontSize":12,"offsetX":0,"offsetY":0,"textAlign":"center","textBaseline":"middle"}}},"location":{"mode":"auto"},"name":"Layer + 1","tooltip":true,"type":"markers"}],"view":{"id":"zero","lat":0,"lon":0,"zoom":1}},"targets":[{"azureLogAnalytics":{"query":"let + regToCoords = dynamic({\r\n \"East Asia\":\r\n {\r\n \"latitude\": + 22.267,\r\n \"longitude\": 114.188\r\n },\r\n \"Southeast Asia\":\r\n {\r\n \"latitude\": + 1.283,\r\n \"longitude\": 103.833\r\n },\r\n \"Central US\":\r\n {\r\n \"latitude\": + 41.5908,\r\n \"longitude\": -93.6208\r\n },\r\n \"East US\":\r\n {\r\n \"latitude\": + 37.3719,\r\n \"longitude\": -79.8164\r\n },\r\n \"East US 2\":\r\n {\r\n \"latitude\": + 36.6681,\r\n \"longitude\": -78.3889\r\n },\r\n \"West US\":\r\n {\r\n \"latitude\": + 37.783,\r\n \"longitude\": -122.417\r\n },\r\n \"North Central + US\":\r\n {\r\n \"latitude\": 41.8819,\r\n \"longitude\": -87.6278\r\n },\r\n \"South + Central US\":\r\n {\r\n \"latitude\": 29.4167,\r\n \"longitude\": + -98.5\r\n },\r\n \"North Europe\":\r\n {\r\n \"latitude\": 53.3478,\r\n \"longitude\": + -6.2597\r\n },\r\n \"West Europe\":\r\n {\r\n \"latitude\": + 52.3667,\r\n \"longitude\": 4.9\r\n },\r\n \"Japan West\":\r\n {\r\n \"latitude\": + 34.6939,\r\n \"longitude\": 135.5022\r\n },\r\n \"Japan East\":\r\n {\r\n \"latitude\": + 35.68,\r\n \"longitude\": 139.77\r\n },\r\n \"Brazil South\":\r\n {\r\n \"latitude\": + -23.55,\r\n \"longitude\": -46.633\r\n },\r\n \"Australia East\" + : \r\n {\r\n \"latitude\": -33.86, \r\n \"longitude\": 151.2094\r\n }, + \r\n \"Australia Southeast\":\r\n {\r\n \"latitude\": -37.8136,\r\n \"longitude\": + 144.9631\r\n },\r\n \"South India\":\r\n {\r\n \"latitude\": + 12.9822,\r\n \"longitude\": 80.1636\r\n },\r\n \"Central India\":\r\n {\r\n \"latitude\": + 18.5822,\r\n \"longitude\": 73.9197\r\n },\r\n \"West India\":\r\n {\r\n \"latitude\": + 19.088,\r\n \"longitude\": 72.868\r\n },\r\n \"Canada Central\":\r\n {\r\n \"latitude\": + 43.653,\r\n \"longitude\": -79.383\r\n },\r\n \"Canada East\":\r\n {\r\n \"latitude\": + 46.817,\r\n \"longitude\": -71.217\r\n },\r\n \"UK South\":\r\n {\r\n \"latitude\": + 50.941,\r\n \"longitude\": -0.799\r\n },\r\n \"UK West\": \r\n {\r\n \"latitude\": + 53.427, \r\n \"longitude\": -3.084\r\n },\r\n \"West Central US\": + \r\n {\r\n \"latitude\": 40.890, \r\n \"longitude\": -110.234\r\n },\r\n \"West + US 2\": \r\n {\r\n \"latitude\": 47.233, \r\n \"longitude\": + -119.852\r\n },\r\n \"Korea Central\": \r\n {\r\n \"latitude\": + 37.5665, \r\n \"longitude\": 126.9780\r\n },\r\n \"Korea South\": + \r\n {\r\n \"latitude\": 35.1796, \r\n \"longitude\": 129.0756\r\n },\r\n \"France + Central\": \r\n {\r\n \"latitude\": 46.3772, \r\n \"longitude\": + 2.3730\r\n },\r\n \"France South\": \r\n {\r\n \"latitude\": + 43.8345, \r\n \"longitude\": 2.1972\r\n },\r\n \"Australia Central\": + \r\n {\r\n \"latitude\": -35.3075, \r\n \"longitude\": 149.1244\r\n },\r\n \"Australia + Central 2\": \r\n {\r\n \"latitude\": -35.3075, \r\n \"longitude\": + 149.1244\r\n },\r\n \"UAE Central\": \r\n {\r\n \"latitude\": + 24.466667, \r\n \"longitude\": 54.366669\r\n },\r\n \"UAE North\": + \r\n {\r\n \"latitude\": 25.266666, \r\n \"longitude\": 55.316666\r\n },\r\n \"South + Africa North\": \r\n {\r\n \"latitude\": -25.731340, \r\n \"longitude\": + 28.218370\r\n },\r\n \"South Africa West\": \r\n {\r\n \"latitude\": + -34.075691, \r\n \"longitude\": 18.843266\r\n }\r\n});\r\navailabilityResults\r\n| + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo and location + in ($reg)\r\n| extend latitude = tostring(regToCoords[location][\"latitude\"])\r\n| + extend longitude = tostring(regToCoords[location][\"longitude\"])\r\n| extend + availabilityResult_duration = iif(itemType == ''availabilityResult'', duration, + todouble(''''))\r\n| summarize [''avTestResults''] = sum(itemCount) by location, + latitude, longitude","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"${metric} (Sum)","type":"geomap"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"dark-blue","mode":"fixed"},"mappings":[],"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"red","value":null},{"color":"green","value":288}]}},"overrides":[]},"gridPos":{"h":15,"w":10,"x":14,"y":15},"id":4,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"/^avTestResults$/","values":true},"showThresholdLabels":false,"showThresholdMarkers":false},"targets":[{"azureLogAnalytics":{"query":"availabilityResults\r\n| + where timestamp \u003e= $__timeFrom and timestamp \u003c $__timeTo and location + in ($reg)\r\n| summarize [''avTestResults''] = sum(itemCount) by location","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Test result count + by Location","transformations":[],"type":"gauge"}],"schemaVersion":36,"style":"dark","tags":[],"templating":{"list":[{"current":{},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":0,"includeAll":false,"label":"Subscription","multi":false,"name":"sub","options":[],"query":{"grafanaTemplateVariableFn":{"kind":"SubscriptionsQuery","rawQuery":"Subscriptions()"},"queryType":"Grafana + Template Variable Function","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":0,"includeAll":false,"label":"Resource + Group","multi":false,"name":"rg","options":[],"query":{"grafanaTemplateVariableFn":{"kind":"ResourceGroupsQuery","rawQuery":"ResourceGroups($sub)","subscription":"$sub"},"queryType":"Grafana + Template Variable Function","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":2,"includeAll":false,"label":"Namespace","multi":false,"name":"ns","options":[],"query":{"grafanaTemplateVariableFn":{"kind":"MetricDefinitionsQuery","rawQuery":"Namespaces($sub, + $rg)","resourceGroup":"$rg","subscription":"$sub"},"queryType":"Grafana Template + Variable Function","refId":"A","subscription":""},"refresh":1,"regex":"([mM](icrosoft)\\.[iI](nsights)/(components))","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"res","options":[],"query":{"grafanaTemplateVariableFn":{"kind":"ResourceNamesQuery","metricDefinition":"$ns","rawQuery":"ResourceNames($sub, + $rg, $ns)","resourceGroup":"$rg","subscription":"$sub"},"queryType":"Grafana + Template Variable Function","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":0,"includeAll":false,"label":"Region","multi":true,"name":"reg","options":[],"query":{"azureLogAnalytics":{"query":"availabilityResults\r\n| + distinct location","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":"","current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":0,"includeAll":false,"label":"Availability + Test","multi":true,"name":"avTest","options":[],"query":{"azureLogAnalytics":{"query":"availabilityResults\r\n| + where location in ($reg)\r\n| distinct name","resource":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$res"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{"selected":false,"text":"Availability + test results count","value":"itemCount"},"hide":2,"includeAll":false,"label":"Metric","multi":false,"name":"metric","options":[{"selected":true,"text":"Availability + test results count","value":"itemCount"},{"selected":false,"text":"Test duration","value":"availabilityResult_duration"}],"query":"Availability + test results count : itemCount, Test duration : availabilityResult_duration","queryValue":"","skipUrlSync":false,"type":"custom"},{"current":{"selected":false,"text":"Sum","value":"Sum"},"hide":2,"includeAll":false,"label":"Aggregation","multi":false,"name":"agg","options":[{"selected":true,"text":"Sum","value":"Sum"},{"selected":false,"text":"Max","value":"Max"},{"selected":false,"text":"Min","value":"Min"}],"query":"Sum, + Max, Min","skipUrlSync":false,"type":"custom"}]},"time":{"from":"now-24h","to":"now"},"title":"Azure + / Insights / Applications Test Availability Geo Map","uid":"AppInsightsAvTestGeoMap","version":1}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2jDQg48fdvqHlu6jnLIB2w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574413.616.442.925753|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/INH9berMk + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-11T22:34:26Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"cosmosdb.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The + dashboard provides insights of Azure Cosmos DB overview, throughput, requests, + storage, availability latency, system and account management.","editable":true,"id":3,"links":[],"panels":[{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":1},"hiddenSeries":false,"id":2,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + Requests","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":"0","show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]},"unit":"short"},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":12,"y":1},"hiddenSeries":false,"id":19,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null + as zero","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"StatusCode","filter":"429","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":""},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Throttled + Requests (429s)","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":"0","show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]},"unit":"short"},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":10},"hiddenSeries":false,"id":9,"legend":{"avg":false,"current":false,"max":true,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Maximum","Average"],"aggregation":"Maximum","allowedTimeGrainsMs":[60000,300000,3600000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"},{"text":"PartitionKeyRangeId","value":"PartitionKeyRangeId"}],"metricDefinition":"$ns","metricName":"NormalizedRUConsumption","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"1 hour","value":"PT1H"},{"text":"1 + day","value":"P1D"}],"top":""},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Normalized + RU Consumption (max)","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"percent","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]},"unit":"short"},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":12,"y":10},"hiddenSeries":false,"id":12,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Total","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"IndexUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":""},"hide":false,"queryType":"Azure Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Total","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"DataUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":""},"hide":false,"queryType":"Azure Monitor","refId":"B","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Index + \u0026 Data Usage","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"decbytes","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"fixed"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"lcd-gauge"},{"id":"color","value":{"mode":"continuous-GrYlRd"}}]}]},"gridPos":{"h":9,"w":8,"x":0,"y":18},"id":11,"maxDataPoints":1,"options":{"showHeader":true},"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":""},"hide":false,"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Total + Requests (Count) By Collection","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"fixed"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"lcd-gauge"},{"id":"color","value":{"mode":"continuous-GrYlRd"}}]}]},"gridPos":{"h":9,"w":8,"x":8,"y":18},"id":14,"maxDataPoints":1,"options":{"showHeader":true},"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Total","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"DocumentCount","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":""},"hide":false,"queryType":"Azure Monitor","refId":"B","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Document + Count (Avg) By Collection","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"fixed"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"lcd-gauge"},{"id":"color","value":{"mode":"continuous-GrYlRd"}}]}]},"gridPos":{"h":9,"w":8,"x":16,"y":18},"id":15,"maxDataPoints":1,"options":{"showHeader":true},"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Total","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"DataUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":""},"hide":false,"queryType":"Azure Monitor","refId":"C","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Data + Usage (Avg) By Collection","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"fixed"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"lcd-gauge"},{"id":"color","value":{"mode":"continuous-GrYlRd"}}]}]},"gridPos":{"h":9,"w":8,"x":0,"y":27},"id":16,"maxDataPoints":1,"options":{"showHeader":true},"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Total","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"IndexUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":""},"hide":false,"queryType":"Azure Monitor","refId":"D","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Index + Usage (Avg) By Collection","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"fixed"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"lcd-gauge"},{"id":"color","value":{"mode":"palette-classic"}}]}]},"gridPos":{"h":9,"w":8,"x":8,"y":27},"id":17,"maxDataPoints":1,"options":{"showHeader":true},"targets":[{"azureMonitor":{"aggOptions":["Maximum"],"aggregation":"Maximum","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"}],"metricDefinition":"$ns","metricName":"ProvisionedThroughput","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":""},"hide":false,"queryType":"Azure Monitor","refId":"E","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Provisioned + Throughput (Max) By Collection","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"fixed"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"lcd-gauge"},{"id":"color","value":{"mode":"palette-classic"}}]}]},"gridPos":{"h":9,"w":8,"x":16,"y":27},"id":18,"maxDataPoints":1,"options":{"showHeader":true},"targets":[{"azureMonitor":{"aggOptions":["Maximum","Average"],"aggregation":"Maximum","allowedTimeGrainsMs":[60000,300000,3600000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"},{"text":"PartitionKeyRangeId","value":"PartitionKeyRangeId"}],"metricDefinition":"$ns","metricName":"NormalizedRUConsumption","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"1 hour","value":"PT1H"},{"text":"1 + day","value":"P1D"}],"top":""},"hide":false,"queryType":"Azure Monitor","refId":"F","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Normalized + RU Consumption (Max) By Collection","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"}],"title":"Overview","type":"row"},{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":1},"id":21,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":2},"hiddenSeries":false,"id":23,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequestUnits","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + Request Units","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":12,"y":2},"hiddenSeries":false,"id":24,"legend":{"alignAsTable":false,"avg":false,"current":false,"max":true,"min":false,"rightSide":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Maximum","Average"],"aggregation":"Maximum","allowedTimeGrainsMs":[60000,300000,3600000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"PartitionKeyRangeId","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"},{"text":"PartitionKeyRangeId","value":"PartitionKeyRangeId"}],"metricDefinition":"$ns","metricName":"NormalizedRUConsumption","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"1 hour","value":"PT1H"},{"text":"1 + day","value":"P1D"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Normalized + RU Consumption By PartitionKeyRangeID","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"percent","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":6,"w":24,"x":0,"y":10},"id":25,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Maximum"],"aggregation":"Maximum","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"}],"metricDefinition":"$ns","metricName":"ProvisionedThroughput","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":""},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Provisioned + Throughput (Max) by Collection","type":"stat"}],"title":"Throughput","type":"row"},{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":2},"id":27,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":3},"hiddenSeries":false,"id":28,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"StatusCode","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + Requests by Status Code","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":12,"y":3},"hiddenSeries":false,"id":29,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"StatusCode","filter":"429","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Throttled + Requests (429)","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":24,"x":0,"y":11},"hiddenSeries":false,"id":30,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"OperationType","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + Requests by Operation Type","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}}],"title":"Requests","type":"row"},{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":3},"id":32,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":4},"hiddenSeries":false,"id":33,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Average","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"DataUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Average","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"IndexUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"B","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Data + \u0026 Index Usage","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"decbytes","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":12,"y":4},"hiddenSeries":false,"id":34,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Average","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"DocumentCount","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Document + Count","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":15,"w":24,"x":0,"y":12},"id":36,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Average","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"DataUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Total","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"IndexUsage","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Total","Average"],"aggregation":"Average","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"CollectionName","filter":"","operator":"eq"}],"dimensions":[{"text":"CollectionName","value":"CollectionName"},{"text":"DatabaseName","value":"DatabaseName"},{"text":"Region","value":"Region"}],"metricDefinition":"$ns","metricName":"DocumentCount","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"C","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Data, + Index \u0026 Document Usage","type":"stat"}],"title":"Storage","type":"row"},{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":4},"id":38,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":5},"hiddenSeries":false,"id":39,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","scopedVars":{"sub":{"selected":true,"text":"RTD-Experimental + - f7152080-b4e8-47ee-9c85-7f1d0e6b72dc","value":"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc"}},"seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Minimum","Average","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[],"metricDefinition":"$ns","metricName":"ServiceAvailability","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Minimum","Average","Maximum"],"aggregation":"Minimum","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[],"metricDefinition":"$ns","metricName":"ServiceAvailability","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Minimum","Average","Maximum"],"aggregation":"Maximum","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[],"metricDefinition":"$ns","metricName":"ServiceAvailability","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"C","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Service + Availability (min/max/avg in %)","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"percent","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}}],"repeat":"sub","title":"Availability","type":"row"},{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":5},"id":41,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":6},"hiddenSeries":false,"id":42,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"Region","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"ConnectionMode","value":"ConnectionMode"},{"text":"OperationType","value":"OperationType"},{"text":"PublicAPIType","value":"PublicAPIType"}],"metricDefinition":"$ns","metricName":"ServerSideLatency","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Server + Side Latency (Avg) By Region","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"ms","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":12,"y":6},"hiddenSeries":false,"id":43,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"OperationType","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"ConnectionMode","value":"ConnectionMode"},{"text":"OperationType","value":"OperationType"},{"text":"PublicAPIType","value":"PublicAPIType"}],"metricDefinition":"$ns","metricName":"ServerSideLatency","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Server + Side Latency (Avg) By Operation","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"ms","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}}],"title":"Latency","type":"row"},{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":6},"id":45,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":7},"hiddenSeries":false,"id":46,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"StatusCode","filter":"","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"}],"metricDefinition":"$ns","metricName":"MetadataRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Metadata + Requests by Status Code","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":12,"y":7},"hiddenSeries":false,"id":47,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"StatusCode","filter":"429","operator":"eq"}],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"}],"metricDefinition":"$ns","metricName":"MetadataRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Metadata + Requests That Exceeded Capacity (429s)","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}}],"title":"System","type":"row"},{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":7},"id":49,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":0,"y":8},"hiddenSeries":false,"id":50,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[],"metricDefinition":"$ns","metricName":"CreateAccount","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[],"metricDefinition":"$ns","metricName":"DeleteAccount","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[{"text":"KeyType","value":"KeyType"}],"metricDefinition":"$ns","metricName":"UpdateAccountKeys","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"C","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Cosmos + DB Account Management (Creates, Deletes) and Account Key Updates","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"custom":{}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":8,"w":12,"x":12,"y":8},"hiddenSeries":false,"id":51,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[{"text":"DiagnosticSettings + Name","value":"DiagnosticSettingsName"},{"text":"ResourceGroup Name","value":"ResourceGroupName"}],"metricDefinition":"$ns","metricName":"UpdateDiagnosticsSettings","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"queryType":"Azure Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[],"metricDefinition":"$ns","metricName":"UpdateAccountNetworkSettings","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[300000],"dimensionFilter":"*","dimensionFilters":[{"dimension":null,"filter":"","operator":"eq"}],"dimensions":[],"metricDefinition":"$ns","metricName":"UpdateAccountReplicationSettings","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"5 + minutes","value":"PT5M"}],"top":"10"},"hide":false,"queryType":"Azure Monitor","refId":"C","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Cosmos + DB Account Diagnostic, Network and Replication Settings Updates","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}}],"title":"Account + Management","type":"row"}],"refresh":false,"schemaVersion":27,"style":"dark","tags":[],"templating":{"list":[{"current":{},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"allValue":null,"current":{},"datasource":"${ds}","definition":"subscriptions()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Subscription","multi":false,"name":"sub","options":[],"query":"subscriptions()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{},"datasource":"${ds}","definition":"ResourceGroups($sub)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Resource + Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{"selected":false,"text":"Microsoft.DocumentDb/databaseAccounts","value":"Microsoft.DocumentDb/databaseAccounts"},"description":null,"error":null,"hide":0,"includeAll":false,"label":"Namespace","multi":false,"name":"ns","options":[{"selected":true,"text":"Microsoft.DocumentDb/databaseAccounts","value":"Microsoft.DocumentDb/databaseAccounts"}],"query":"Microsoft.DocumentDb/databaseAccounts","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"datasource":"${ds}","definition":"ResourceNames($sub, + $rg, $ns)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"resource","options":[],"query":"ResourceNames($sub, + $rg, $ns)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-6h","to":"now"},"title":"Azure + / Insights / Cosmos DB","uid":"INH9berMk","version":1}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dLsyG650sh5cX8F30fafIw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574413.873.436.454952|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/8UDB1s3Gk + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"dataexplorercluster.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The + dashboard provides insights of Azure Data Explorer Cluster Resource overview, + key mettrics, usage, tables, cache and ingestion.","editable":true,"id":4,"links":[],"panels":[{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":6,"panels":[],"title":"Overview","type":"row"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":0,"y":1},"id":4,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"KeepAlive","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Keep + Alive (Avg)","type":"stat"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":3,"y":1},"id":12,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"CPU","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"CPU + (Avg)","type":"stat"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":6,"y":1},"id":13,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"IngestionUtilization","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Ingestion + Utilization (Avg) ","type":"stat"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":9,"y":1},"id":14,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"IngestionLatencyInSeconds","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Ingestion + Latency (Avg) ","type":"stat"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":12,"y":1},"id":15,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"CacheUtilization","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Cache + Utilization (Avg)","type":"stat"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":15,"y":1},"id":16,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Status","value":"IngestionResultDetails"}],"metricDefinition":"$ns","metricName":"IngestionResult","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Succeeded + Ingestions (#)","type":"stat"},{"datasource":"$ds","description":"The aggregated + usage in the cluster, out of the total used CPU and memory. To see more details, + go to the Usage tab.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":6},"id":17,"options":{"showHeader":true},"targets":[{"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is KustoRunner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand \r\n | where + TimeGenerated \u003e datetime(2020-09-09T09:30:00Z) \r\n | where LastUpdatedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | extend MemoryPeak = tolong(ResourceUtilization.MemoryPeak) + \r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State, FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest''\r\n //| + where totimespan(TotalCPU) \u003e totimespan(0)\r\n | summarize TotalCPU=max(TotalCPU) + \r\n , MemoryPeak=max(MemoryPeak)\r\n by User, ApplicationName, + CorrelationId \r\n;\r\nlet totalCPU = toscalar(dataset\r\n | summarize + sum((totimespan(TotalCPU) / 1s)));\r\nlet totalMemory = toscalar(dataset\r\n | + summarize sum(MemoryPeak));\r\nlet topMemory = \r\n dataset\r\n | top-nested + 10000 of User with others=\"Others\" by sum(MemoryPeak), top-nested 10000 + of ApplicationName with others=\"Others\" by sum(MemoryPeak)\r\n | extend + PercentOfTotalClusterMemoryUsed = aggregated_ApplicationName / toreal(totalMemory)\r\n;\r\nlet + topCpu = \r\n dataset\r\n | top-nested 10000 of User with others=\"Others\" + by sum(totimespan(TotalCPU) / 1s), top-nested 10000 of ApplicationName with + others=\"Others\" by sum(totimespan(TotalCPU) / 1s)\r\n | extend PercentOfTotalClusterCpuUsed + = aggregated_ApplicationName / toreal(totalCPU)\r\n;\r\ntopMemory\r\n| join + kind = fullouter(topCpu) on User, ApplicationName\r\n| extend BothPercentages + = PercentOfTotalClusterMemoryUsed + PercentOfTotalClusterCpuUsed\r\n| top + 10 by BothPercentages desc\r\n| extend User = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", + strcat(\"Kusto Data Management \", \"(\", User, \")\"),\r\n ApplicationName + == \"KustoQueryRunner\", strcat(\"Kusto Query Runner \", \"(\", User, \")\"),\r\n User + == \"AAD app id=e0331ea9-83fc-4409-a17d-6375364c3280\", \"DataMap Agent 001 + (app id: e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used for internal MS + clusters \r\n User)\r\n| extend PercentOfTotalClusterMemoryUsed_display + = iff(isnan(PercentOfTotalClusterMemoryUsed * 100), toreal(0), PercentOfTotalClusterMemoryUsed + * 100)\r\n| extend PercentOfTotalClusterCpuUsed_display = iff(isnan(PercentOfTotalClusterCpuUsed + * 100), toreal(0), PercentOfTotalClusterCpuUsed * 100)\r\n| where not (ApplicationName + == \"Others\" and PercentOfTotalClusterMemoryUsed_display == 0 and PercentOfTotalClusterCpuUsed_display + == 0)\r\n| project User, ApplicationName, PercentOfTotalClusterMemoryUsed_display, + PercentOfTotalClusterCpuUsed_display","resultFormat":"time_series","workspace":"$ws"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Top + resource consumers","transparent":true,"type":"table"},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","description":"Over + a sliding timeline window. Not affected by the time range parameter","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":12,"y":6},"hiddenSeries":false,"id":2,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":3,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak) \r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ApplicationName != + ''Kusto.WinSvc.DM.Svc''\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where DatabaseName !in (system_databases) and User !in + (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ApplicationName != ''Kusto.WinSvc.DM.Svc''\r\n | extend MemoryPeak + = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User,\r\n ApplicationName,\r\n Principal,\r\n TotalCPU,\r\n MemoryPeak,\r\n CorrelationId,\r\n cluster_name;\r\nlet + raw = dataset_commands_queries\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | + where cluster_name == ''mitulktest''\r\n | where StartedOn \u003e ago(365d)\r\n;\r\nraw\r\n| + evaluate activity_engagement(User, StartedOn, 1d, 7d)\r\n| join kind = inner + (\r\n raw\r\n | evaluate activity_engagement(User, StartedOn, 1d, 30d)\r\n )\r\n on + StartedOn\r\n| project StartedOn, Daily=dcount_activities_inner, Weekly=dcount_activities_outer, + Monthly = dcount_activities_outer1 \r\n| where StartedOn \u003e ago(90d)\r\n| + project Daily, StartedOn, Weekly, Monthly\r\n| sort by StartedOn asc\r\n","resultFormat":"time_series","workspace":"$ws"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Unique + user count","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":15},"id":19,"panels":[],"title":"Key + Metrics","type":"row"},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":0,"y":16},"hiddenSeries":false,"id":20,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"KeepAlive","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Keep + Alive","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":6,"y":16},"hiddenSeries":false,"id":21,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"CPU","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"CPU","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"percent","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":12,"y":16},"hiddenSeries":false,"id":22,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"CacheUtilization","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Cache + Utilization","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"percent","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":18,"y":16},"hiddenSeries":false,"id":23,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"InstanceCount","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Instance + Count","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":0,"y":26},"hiddenSeries":false,"id":24,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"TotalNumberOfConcurrentQueries","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Concurrent + Queries","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":6,"y":26},"hiddenSeries":false,"id":25,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum","Total"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Query + Status","value":"QueryStatus"}],"metricDefinition":"$ns","metricName":"QueryDuration","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Query + Duration","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"ms","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":12,"y":26},"hiddenSeries":false,"id":26,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum","Total"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Command + Type","value":"CommandType"}],"metricDefinition":"$ns","metricName":"TotalNumberOfThrottledCommands","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Throttled + Commands","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"ms","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":18,"y":26},"hiddenSeries":false,"id":27,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum","Total"],"aggregation":"Maximum","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"TotalNumberOfThrottledQueries","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Throttled + Queries","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":0,"y":36},"hiddenSeries":false,"id":28,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"IngestionUtilization","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Ingestion + Utilization","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"percent","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":6,"y":36},"hiddenSeries":false,"id":29,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Maximum","Minimum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"IngestionLatencyInSeconds","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Ingestion + Latency","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"s","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":12,"y":36},"hiddenSeries":false,"id":30,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Status","value":"IngestionResultDetails"}],"metricDefinition":"$ns","metricName":"IngestionResult","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Ingestion + Result","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":18,"y":36},"hiddenSeries":false,"id":31,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Total","Maximum"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Database","value":"Database"}],"metricDefinition":"$ns","metricName":"IngestionVolumeInMB","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Ingestion + Volume","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"decbytes","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":0,"y":46},"hiddenSeries":false,"id":32,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"StreamingIngestDataRate","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Streaming + Ingest Data Rate","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":6,"y":46},"hiddenSeries":false,"id":33,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"StreamingIngestDuration","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Streaming + Ingest Duration","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"ms","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":12,"y":46},"hiddenSeries":false,"id":34,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["None","Average","Minimum","Maximum","Total","Count"],"aggregation":"None","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"SteamingIngestRequestRate","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Streaming + Ingest Request Rate","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"ms","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":6,"x":18,"y":46},"hiddenSeries":false,"id":35,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Result","value":"Result"}],"metricDefinition":"$ns","metricName":"StreamingIngestResults","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Streaming + Ingest Result","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":56},"hiddenSeries":false,"id":36,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Total","Average","Minimum","Maximum"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"EventsProcessed","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Events + Processed","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":12,"y":56},"hiddenSeries":false,"id":37,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Discovery + Latency","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":65},"id":40,"panels":[],"title":"Usage","type":"row"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":14,"x":0,"y":66},"id":43,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is KustoRunner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand \r\n | where + TimeGenerated \u003e datetime(2020-09-09T09:30:00Z) \r\n | where LastUpdatedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | extend MemoryPeak = tolong(ResourceUtilization.MemoryPeak) + \r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State, FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest''\r\n //| + where totimespan(TotalCPU) \u003e totimespan(0)\r\n | summarize TotalCPU=max(TotalCPU) + \r\n , MemoryPeak=max(MemoryPeak)\r\n by User, ApplicationName, + CorrelationId \r\n;\r\nlet totalCPU = toscalar(dataset\r\n | summarize + sum((totimespan(TotalCPU) / 1s)));\r\nlet totalMemory = toscalar(dataset\r\n | + summarize sum(MemoryPeak));\r\nlet topMemory = \r\n dataset\r\n | top-nested + 10000 of User with others=\"Others\" by sum(MemoryPeak), top-nested 10000 + of ApplicationName with others=\"Others\" by sum(MemoryPeak)\r\n | extend + PercentOfTotalClusterMemoryUsed = aggregated_ApplicationName / toreal(totalMemory)\r\n;\r\nlet + topCpu = \r\n dataset\r\n | top-nested 10000 of User with others=\"Others\" + by sum(totimespan(TotalCPU) / 1s), top-nested 10000 of ApplicationName with + others=\"Others\" by sum(totimespan(TotalCPU) / 1s)\r\n | extend PercentOfTotalClusterCpuUsed + = aggregated_ApplicationName / toreal(totalCPU)\r\n;\r\ntopMemory\r\n| join + kind = fullouter(topCpu) on User, ApplicationName\r\n| extend BothPercentages + = PercentOfTotalClusterMemoryUsed + PercentOfTotalClusterCpuUsed\r\n| top + 10 by BothPercentages desc\r\n| extend User = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", + strcat(\"Kusto Data Management \", \"(\", User, \")\"),\r\n ApplicationName + == \"KustoQueryRunner\", strcat(\"Kusto Query Runner \", \"(\", User, \")\"),\r\n User + == \"AAD app id=e0331ea9-83fc-4409-a17d-6375364c3280\", \"DataMap Agent 001 + (app id: e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used for internal MS + clusters \r\n User)\r\n| extend PercentOfTotalClusterMemoryUsed_display + = iff(isnan(PercentOfTotalClusterMemoryUsed * 100), toreal(0), PercentOfTotalClusterMemoryUsed + * 100)\r\n| extend PercentOfTotalClusterCpuUsed_display = iff(isnan(PercentOfTotalClusterCpuUsed + * 100), toreal(0), PercentOfTotalClusterCpuUsed * 100)\r\n| where not (ApplicationName + == \"Others\" and PercentOfTotalClusterMemoryUsed_display == 0 and PercentOfTotalClusterCpuUsed_display + == 0)\r\n| project User, ApplicationName, PercentOfTotalClusterMemoryUsed_display, + PercentOfTotalClusterCpuUsed_display","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Top + resource consumers (within the CPU and memory consumption of the cluster)","transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":10,"x":14,"y":66},"id":44,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where LastUpdatedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest''\r\n | + where CommandType != ''TableSetOrAppend''\r\n | summarize Count=count() + by User, ApplicationName\r\n | project User, ApplicationName, Count\r\n | + extend User = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", strcat(\"Kusto + Data Management \", \"(\", User, \")\"),\r\n User == \"AAD app id=e0331ea9-83fc-4409-a17d-6375364c3280\", + \"DataMap Agent 001 (app id: e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used + for internal MS clusters\r\n User)\r\n | top 10 by Count;\r\n//| + order by Count desc\r\n// \u003cOption #1 for top-nested\u003e | top-nested + 10 of User with others=\"Other Values\" by agg_User=sum(Count) desc;\r\n// + \u003cOption #2 for top-nested\u003e| top-nested 10 of User by agg_User=sum(Count) + desc, top-nested 5 of ApplicationName with others=\"Other applications\" by + agg_App=sum(Count) desc\r\n// \u003cOption #2 for top-nested\u003e| where + not (ApplicationName == \"Other applications\" and agg_App == 0)\r\n// \u003cOption + #2 for top-nested\u003e| project-away agg_User;\r\ndataset\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Top + principals and applications by command and query count","transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":5,"w":8,"x":0,"y":70},"id":38,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is KustoRunner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where LastUpdatedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | extend ApplicationName + = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", \"Kusto Data Management\",\r\n ApplicationName)\r\n | + project CommandType, DatabaseName, StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, + RootActivityId, User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, + cluster_name;\r\nlet dataset = dataset_commands_queries\r\n | where cluster_name + == ''mitulktest''\r\n | where CommandType != ''TableSetOrAppend''\r\n | + summarize Count=count() by ApplicationName\r\n | project ApplicationName, + Count\r\n | order by Count desc\r\n //| top-nested 10 of User with others=\"Other + Values\" by agg_User=sum(Count) desc;\r\n | top-nested 7 of ApplicationName + with others=\"Other Values\" by agg_App=sum(Count) desc;\r\n//|where not + (ApplicationName == \"Other applications\" and agg_App == 0)\r\n//|project-away + agg_User;\r\ndataset\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Top + applications by command and query count","transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":5,"w":8,"x":8,"y":70},"id":41,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is KustoRunner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where LastUpdatedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest''\r\n | + where CommandType != ''TableSetOrAppend''\r\n | extend User = case(ApplicationName + == \"Kusto.WinSvc.DM.Svc\", strcat(\"Kusto Data Management \", \"(\", User, + \")\"),\r\n ApplicationName == \"KustoQueryRunner\", strcat(\"Kusto + Query Runner \", \"(\", User, \")\"),\r\n User == \"AAD app id=e0331ea9-83fc-4409-a17d-6375364c3280\", + \"DataMap Agent 001 (app id: e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used + for internal MS clusters \r\n User)\r\n | summarize Count=count() + by User\r\n | project User, Count\r\n | order by Count desc\r\n | + top-nested 7 of User with others=\"Other Values\" by agg_User=sum(Count) desc;\r\ndataset\r\n\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Top + principals by command and query count","transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":5,"w":8,"x":16,"y":70},"id":42,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is KustoRunner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where LastUpdatedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest''\r\n | + where CommandType != ''TableSetOrAppend''\r\n | summarize Count=count() + by CommandType\r\n | project CommandType, Count\r\n | order by Count + desc\r\n | top-nested 7 of CommandType with others=\"Other Values\" by + agg_App=sum(Count) desc;\r\ndataset\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Queries + and top commands by command type","transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":14,"x":0,"y":75},"id":45,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is KustoRunner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | where + TimeGenerated \u003e ago(17d)\r\n | where DatabaseName !in (system_databases) + and User !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | extend MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | + parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" cluster_name\r\n | + project-away ResourceUtilization;\r\nlet QueryTable = ADXQuery\r\n | where + TimeGenerated \u003e ago(17d)\r\n | where DatabaseName !in (system_databases) + and User !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | extend MemoryPeak = tolong(MemoryPeak)\r\n | + parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" cluster_name\r\n | + extend CommandType = ''Query'';\r\nlet dataset_commands_queries = CommandTable\r\n | + union (QueryTable)\r\n | project CommandType, DatabaseName, StartedOn, + LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\nlet + FullList = dataset\r\n | where CommandType != ''TableSetOrAppend'';\r\nlet + Last24Hours =\r\n FullList\r\n | where StartedOn \u003e= ago(1d) and + StartedOn \u003c now()\r\n | summarize Count=count() by User, ApplicationName\r\n | + top 100 by Count desc\r\n;\r\nlet HistoricalDailyAverage =\r\n FullList\r\n | + where StartedOn \u003e= ago(16d) and StartedOn \u003c ago(1d)\r\n | summarize + Count=count() / 15.0 by User, ApplicationName\r\n | top 100 by Count desc\r\n;\r\nlet + TimeRangeComparison =\r\n Last24Hours\r\n | join kind=leftouter (HistoricalDailyAverage) + on User, ApplicationName\r\n | project User=coalesce(User, User1), ApplicationName, + Last24Hours=Count, HistoricalDailyAverage=round(Count1, 0)\r\n | extend + PercentChange=round((Last24Hours - HistoricalDailyAverage) / toreal(HistoricalDailyAverage), + 2)\r\n | top 10 by Last24Hours desc\r\n;\r\nTimeRangeComparison\r\n| extend + User = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", strcat(\"Kusto Data + Management \", \"(\", User, \")\"),\r\n ApplicationName == \"KustoQueryRunner\", + strcat(\"Kusto Query Runner \", \"(\", User, \")\"),\r\n User == \"AAD + app id=e0331ea9-83fc-4409-a17d-6375364c3280\", \"DataMap Agent 001 (app id: + e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used for internal MS clusters + \r\n User)\r\n| project User, ApplicationName, HistoricalDailyAverage=round(HistoricalDailyAverage, + 0), Last24Hours, PercentChange\r\n| order by Last24Hours desc","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Changes + in query count by principal (not affected by the the time range parameter)","transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":10,"x":14,"y":75},"id":46,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Quert Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where LastUpdatedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where LastUpdatedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\ndataset\r\n| + where CommandType != ''TableSetOrAppend'' and State == ''Failed''\r\n| summarize + Count=count() by User, ApplicationName\r\n| top 10 by Count desc\r\n| extend + User = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", strcat(\"Kusto Data + Management \", \"(\", User, \")\"),\r\n ApplicationName == \"KustoQueryRunner\", + strcat(\"Kusto Query Runner \", \"(\", User, \")\"),\r\n User == \"AAD + app id=e0331ea9-83fc-4409-a17d-6375364c3280\", \"DataMap Agent 001 (app id: + e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used for internal MS clusters + \r\n User)\r\n| order by Count desc\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Failed + queries","transparent":true,"type":"table"},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":0,"y":79},"hiddenSeries":false,"id":47,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\nlet + FullList = dataset\r\n | where CommandType != ''TableSetOrAppend''\r\n | + project User, StartedOn, ApplicationName, CommandType\r\n;\r\nlet Top =\r\n dataset\r\n | + summarize Count=count() by User\r\n | top 10 by Count desc\r\n | extend + OriginalUser = User\r\n | extend Category=User\r\n;\r\nFullList\r\n| join + kind=leftouter(Top) on $left.User == $right.OriginalUser\r\n| project User=coalesce(Category, + ''Other''), ApplicationName, CommandType, StartedOn\r\n| extend User = case(ApplicationName + == \"Kusto.WinSvc.DM.Svc\", strcat(\"Kusto Data Management \", \"(\", User, + \")\"),\r\n ApplicationName == \"KustoQueryRunner\", strcat(\"Kusto Query + Runner \", \"(\", User, \")\"),\r\n User == \"AAD app id=e0331ea9-83fc-4409-a17d-6375364c3280\", + \"DataMap Agent 001 (app id: e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used + for internal MS clusters \r\n User)\r\n| summarize count() by User, bin(StartedOn, + 1h)\r\n| summarize sum(count_) by bin(StartedOn, 1h), tostring(User)\r\n| + sort by StartedOn asc","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Command + + query count by principal","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":8,"y":79},"hiddenSeries":false,"id":48,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\nlet + FullList = dataset\r\n | where CommandType != ''TableSetOrAppend''\r\n | + project User, ApplicationName, CommandType, StartedOn, MemoryPeak\r\n | + extend User = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", strcat(\"Kusto + Data Management \", \"(\", User, \")\"),\r\n ApplicationName == \"KustoQueryRunner\", + strcat(\"Kusto Query Runner \", \"(\", User, \")\"),\r\n User == \"AAD + app id=e0331ea9-83fc-4409-a17d-6375364c3280\", \"DataMap Agent 001 (app id: + e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used for internal MS clusters + \r\n User)\r\n;\r\nlet Top =\r\n FullList\r\n | summarize Memory=sum(MemoryPeak) + by User\r\n | top 10 by Memory desc\r\n | extend OriginalUser = User\r\n | + project OriginalUser, Category=User\r\n;\r\nFullList\r\n| join kind=leftouter(Top) + on $left.User == $right.OriginalUser\r\n| project User=coalesce(Category, + ''Other''), StartedOn, MemoryPeakGB=MemoryPeak / 1024.0 / 1024.0 / 1024.0\r\n| + summarize MemoryPeakGB=sum(MemoryPeakGB) by User, bin(StartedOn, 1h)\r\n| + summarize sum(MemoryPeakGB) by bin(StartedOn, 1h), tostring(User)\r\n| sort + by StartedOn asc","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + memory by principal","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":16,"y":79},"hiddenSeries":false,"id":49,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where StartedOn \u003e ago(7d)\r\n | + where cluster_name == ''mitulktest'';\r\nlet FullList = dataset\r\n | where + CommandType != ''TableSetOrAppend''\r\n | project User, ApplicationName, + CommandType, StartedOn, TotalCPU\r\n | extend User = case(ApplicationName + == \"Kusto.WinSvc.DM.Svc\", strcat(\"Kusto Data Management \", \"(\", User, + \")\"),\r\n ApplicationName == \"KustoQueryRunner\", strcat(\"Kusto + Query Runner \", \"(\", User, \")\"),\r\n User == \"AAD app id=e0331ea9-83fc-4409-a17d-6375364c3280\", + \"DataMap Agent 001 (app id: e0331ea9-83fc-4409-a17d-6375364c3280)\", // Used + for internal MS clusters \r\n User)\r\n;\r\nlet Top =\r\n FullList\r\n | + summarize TotalCpu=sum(totimespan(TotalCPU)) by User\r\n | top 10 by TotalCpu + desc\r\n | extend OriginalUser = User\r\n | project OriginalUser, Category=User\r\n;\r\nFullList\r\n| + join kind=leftouter(Top) on $left.User == $right.OriginalUser\r\n| project + User=coalesce(Category, ''Other''), StartedOn, TotalCpuMinutes=totimespan(TotalCPU) + / 1m\r\n| summarize TotalCpuMinutes=sum(TotalCpuMinutes) by User, bin(StartedOn, + 1h)\r\n| top-nested of bin(StartedOn, 1h) by sum(TotalCpuMinutes), top-nested + 5 of User with others=\"Other Values\" by sum_TotalCpuMinutes=sum(TotalCpuMinutes) + desc\r\n| sort by StartedOn asc\r\n| project StartedOn, User, sum_TotalCpuMinutes\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + CPU by principal","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":0,"y":89},"hiddenSeries":false,"id":51,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | extend ApplicationName + = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", \"Kusto Data Management\", + ApplicationName)\r\n | project CommandType, DatabaseName, StartedOn, LastUpdatedOn, + Duration, State,\r\n FailureReason, RootActivityId, User, ApplicationName, + Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet dataset + = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\nlet + FullList = dataset\r\n | where CommandType != ''TableSetOrAppend''\r\n | + project ApplicationName, StartedOn, CommandType, User\r\n;\r\nlet Top =\r\n FullList\r\n | + summarize Count=count() by ApplicationName\r\n | top 10 by Count desc\r\n | + extend Category=ApplicationName\r\n;\r\nFullList\r\n| join kind=leftouter(Top) + on ApplicationName \r\n| project Application=coalesce(Category, ''-''), CommandType, + User, StartedOn\r\n| summarize count() by Application, bin(StartedOn, 1h)\r\n| + summarize sum(count_) by bin(StartedOn, time(1h)), tostring(Application)\r\n| + sort by StartedOn asc\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Command + + query count by application","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":8,"y":89},"hiddenSeries":false,"id":52,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak) \r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | extend ApplicationName + = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", \"Kusto Data Management\", + ApplicationName)\r\n | project CommandType, DatabaseName, StartedOn, LastUpdatedOn, + Duration, State,\r\n FailureReason, RootActivityId, User, ApplicationName, + Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet dataset + = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\nlet + FullList = dataset\r\n | where CommandType != ''TableSetOrAppend''\r\n | + project ApplicationName, StartedOn, CommandType, User, MemoryPeak\r\n;\r\nlet + Top =\r\n FullList\r\n | summarize Memory=sum(MemoryPeak) by ApplicationName\r\n | + top 10 by Memory desc\r\n | extend Category=ApplicationName;\r\nFullList\r\n| + join kind=inner(Top) on ApplicationName\r\n| project Application=coalesce(Category, + ''-''), CommandType, User, StartedOn, MemoryPeakMB=MemoryPeak / 1024.0 / 1024.0\r\n| + summarize MemoryPeakMB=sum(MemoryPeakMB) by Application, bin(StartedOn, 1h)\r\n| + summarize sum(MemoryPeakMB) by bin(StartedOn, time(1h)), tostring(Application)\r\n| + sort by StartedOn asc\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + memory by application","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":16,"y":89},"hiddenSeries":false,"id":50,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | extend ApplicationName + = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", \"Kusto Data Management\", + ApplicationName)\r\n | project CommandType, DatabaseName, StartedOn, LastUpdatedOn, + Duration, State,\r\n FailureReason, RootActivityId, User, ApplicationName, + Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet dataset + = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\nlet + FullList = dataset\r\n | where CommandType != ''TableSetOrAppend''\r\n | + project ApplicationName, CommandType, User, StartedOn, TotalCPU\r\n;\r\nlet + Top =\r\n FullList\r\n | summarize TotalCPU=sum(totimespan(TotalCPU)) + by ApplicationName\r\n | top 10 by TotalCPU desc\r\n | extend Category=ApplicationName\r\n;\r\nFullList\r\n| + join kind=inner(Top) on ApplicationName\r\n| project Application=coalesce(Category, + ''-''), CommandType, User, StartedOn, TotalCpuMinutes=totimespan(TotalCPU) + / 1m\r\n| summarize TotalCpuMinutes=sum(TotalCpuMinutes) by Application, bin(StartedOn, + 1h)\r\n| summarize sum(TotalCpuMinutes) by bin(StartedOn, time(1h)), tostring(Application)\r\n| + sort by StartedOn asc\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + CPU by application","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":0,"y":99},"hiddenSeries":false,"id":53,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\ndataset\r\n| + where CommandType != ''TableSetOrAppend'' \r\n| top-nested of bin(StartedOn, + time(1h)) by count(), top-nested 5 of CommandType by count_=count() desc\r\n| + sort by StartedOn asc\r\n| project StartedOn, CommandType, count_\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Queries + + command count by type","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":8,"y":99},"hiddenSeries":false,"id":54,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak) \r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\ndataset\r\n| + where CommandType != ''TableSetOrAppend'' \r\n| extend MemoryPeakGB=MemoryPeak + / 1024.0 / 1024.0 / 1024.0\r\n| top-nested of bin(StartedOn, time(1h)) by + sum(MemoryPeakGB), top-nested 5 of CommandType with others=\"Other Values\" + by sum_MemoryPeakGB=sum(MemoryPeakGB) desc\r\n| sort by StartedOn asc\r\n| + project StartedOn, CommandType, sum_MemoryPeakGB\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + memory by type","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":8,"x":16,"y":99},"hiddenSeries":false,"id":55,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet CommandTable = ADXCommand\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak) \r\n | where StartedOn + \u003e ago(7d)\r\n | where DatabaseName !in (system_databases) and User + !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | project-away ResourceUtilization;\r\nlet QueryTable + = ADXQuery\r\n | where StartedOn \u003e ago(7d)\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where ((false == \"false\" + and ApplicationName != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | + extend MemoryPeak = tolong(MemoryPeak)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | extend CommandType = ''Query'';\r\nlet dataset_commands_queries + = CommandTable\r\n | union (QueryTable)\r\n | project CommandType, DatabaseName, + StartedOn, LastUpdatedOn, Duration, State,\r\n FailureReason, RootActivityId, + User, ApplicationName, Principal, TotalCPU, MemoryPeak, CorrelationId, cluster_name;\r\nlet + dataset = dataset_commands_queries\r\n | where cluster_name == ''mitulktest'';\r\ndataset\r\n| + where CommandType != ''TableSetOrAppend'' \r\n| extend TotalCpuMinutes = totimespan(TotalCPU) + / 1m\r\n| top-nested of bin(StartedOn, time(1h)) by sum(TotalCpuMinutes), + top-nested 5 of CommandType with others=\"Other Values\" by sum_TotalCpuMinutes=sum(TotalCpuMinutes) + desc\r\n| sort by StartedOn asc\r\n| project StartedOn, CommandType, sum_TotalCpuMinutes\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Total + CPU by type","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":8,"x":0,"y":109},"id":56,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet commandTable = \r\n ADXCommand \r\n | + where StartedOn \u003e ago(7d)\r\n | where ((false == \"false\" and ApplicationName + != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | parse _ResourceId with * + \"providers/microsoft.kusto/clusters/\" cluster_name\r\n | where cluster_name + == ''mitulktest''\r\n | project User, StartedOn, ApplicationName, CommandType, + WorkloadGroup\r\n;\r\nlet queryTable = \r\n ADXQuery \r\n | where StartedOn + \u003e ago(7d)\r\n | where ((false == \"false\" and ApplicationName != + ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | parse _ResourceId with * + \"providers/microsoft.kusto/clusters/\" cluster_name\r\n | where cluster_name + == ''mitulktest''\r\n | extend CommandType = ''Query''\r\n | project + User, StartedOn, ApplicationName, CommandType, WorkloadGroup;\r\nlet FullList + = commandTable\r\n | union (queryTable)\r\n | extend ApplicationName + = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", \"Kusto Data Management\", + ApplicationName)\r\n | project User, StartedOn, ApplicationName, CommandType, + WorkloadGroup;\r\nlet Top =\r\n FullList\r\n | summarize Count=count() + by WorkloadGroup\r\n | top 10 by Count desc\r\n | distinct WorkloadGroup\r\n;\r\nFullList\r\n| + project WorkloadGroup = iff((WorkloadGroup in(Top)) == true, WorkloadGroup, + ''Other''), CommandType, StartedOn\r\n| make-series count() on StartedOn from + ago(7d) to now() step 1h by WorkloadGroup\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Command + + query count by workload group","transformations":[],"transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":8,"x":8,"y":109},"id":57,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet commandTable = \r\n ADXCommand\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | where DatabaseName !in (system_databases) and + User !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where StartedOn \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | extend + MemoryPeak = tolong(ResourceUtilization.MemoryPeak)\r\n | project User, + ApplicationName, CommandType, StartedOn, MemoryPeak, WorkloadGroup\r\n;\r\nlet + queryTable = \r\n ADXQuery \r\n | where ((false == \"false\" and ApplicationName + != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where StartedOn \u003e ago(7d)\r\n | + parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" cluster_name\r\n | + where cluster_name == ''mitulktest''\r\n | extend CommandType = ''Query''\r\n | + project User, ApplicationName, CommandType, StartedOn, MemoryPeak, WorkloadGroup;\r\nlet + FullList = commandTable\r\n | union (queryTable)\r\n | extend ApplicationName + = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", \"Kusto Data Management\", + ApplicationName)\r\n | project User, ApplicationName, CommandType, StartedOn, + MemoryPeak, WorkloadGroup;\r\nlet Top =\r\n FullList\r\n | summarize + Memory=sum(MemoryPeak) by WorkloadGroup\r\n | top 10 by Memory desc\r\n | + distinct WorkloadGroup\r\n;\r\nFullList\r\n| project WorkloadGroup = iff((WorkloadGroup + in(Top)) == true, WorkloadGroup, ''Other''), CommandType, User, StartedOn, + MemoryPeakGB=MemoryPeak / 1024.0 / 1024.0 / 1024.0\r\n| make-series MemoryPeakGB=sum(MemoryPeakGB) + on StartedOn from ago(7d) to now() step 1h by WorkloadGroup","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Total + memory by workload group","transformations":[],"transparent":true,"type":"table"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":8,"x":16,"y":109},"id":58,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + system_databases = dynamic([''KustoMonitoringPersistentDatabase'', ''$systemdb'']); + \r\nlet system_users = dynamic([''AAD app id=b753584e-c468-4503-852a-374280ce7a62'', + ''KustoServiceBuiltInPrincipal'']); // b753584e-c468-4503-852a-374280ce7a62 + is Kusto Query Runner\r\nlet system_cluster_management_applications = dynamic([''Kusto.WinSvc.CM.Svc'']); + // Kusto Cluster Management\r\nlet commandTable = \r\n ADXCommand\r\n | + where ((false == \"false\" and ApplicationName != ''Kusto.WinSvc.DM.Svc'') + or false == \"true\")\r\n | where DatabaseName !in (system_databases) and + User !in (system_users) and ApplicationName !in (system_cluster_management_applications)\r\n | + where StartedOn \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | project + User, ApplicationName, CommandType, StartedOn, TotalCPU, WorkloadGroup\r\n;\r\nlet + queryTable = \r\n ADXQuery \r\n | where ((false == \"false\" and ApplicationName + != ''Kusto.WinSvc.DM.Svc'') or false == \"true\")\r\n | where DatabaseName + !in (system_databases) and User !in (system_users) and ApplicationName !in + (system_cluster_management_applications)\r\n | where StartedOn \u003e ago(7d)\r\n | + parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" cluster_name\r\n | + where cluster_name == ''mitulktest''\r\n | extend CommandType = ''Query''\r\n | + project User, ApplicationName, CommandType, StartedOn, TotalCPU, WorkloadGroup;\r\nlet + FullList = commandTable\r\n | union (queryTable)\r\n | extend ApplicationName + = case(ApplicationName == \"Kusto.WinSvc.DM.Svc\", \"Kusto Data Management\", + ApplicationName)\r\n | project User, ApplicationName, CommandType, StartedOn, + totimespan(TotalCPU), WorkloadGroup;\r\nlet Top =\r\n FullList\r\n | + summarize TotalCpu=sum(TotalCPU) by WorkloadGroup\r\n | top 10 by TotalCpu + desc\r\n | distinct WorkloadGroup\r\n;\r\nFullList\r\n| project WorkloadGroup + = iff((WorkloadGroup in(Top)) == true, WorkloadGroup, ''Other''), StartedOn, + TotalCpuMinutes=totimespan(TotalCPU) / 1m\r\n| make-series TotalCpuMinutes=sum(TotalCpuMinutes) + on StartedOn from ago(7d) to now() step 1h by WorkloadGroup","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Total + CPU by workload group","transformations":[],"transparent":true,"type":"table"},{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":113},"id":60,"panels":[],"title":"Tables","type":"row"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":3,"w":24,"x":0,"y":114},"id":61,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"ADXTableDetails + \r\n| where TimeGenerated \u003e= ago(1d)\r\n| project TimeGenerated,\r\n DatabaseName,\r\n TableName,\r\n RetentionPolicyOrigin,\r\n CachingPolicyOrigin,\r\n OriginalSize + = TotalOriginalSize, \r\n TotalExtentSize, \r\n HotExtentSize = HotExtentSize, + \r\n RowCount = TotalRowCount, \r\n ExtentCount = TotalExtentCount,\r\n SoftDelete + = format_timespan(totimespan(todynamic(RetentionPolicy).SoftDeletePeriod), + ''d''),\r\n HotCache = format_timespan(totimespan(todynamic(CachingPolicy).DataHotSpan), + ''d'') \r\n| extend CompressionRatio = round(toreal(OriginalSize) / TotalExtentSize, + 1)\r\n| extend SoftDelete = iff(RetentionPolicyOrigin == \"default\" and isempty(SoftDelete), + \"unlimited\", SoftDelete)\r\n| extend HotCache = iff(CachingPolicyOrigin + == \"default\" and isempty(HotCache), \"unlimited\", HotCache)\r\n| summarize + arg_max(TimeGenerated, *) by DatabaseName, TableName\r\n| top 351 by HotExtentSize + desc\r\n| project DatabaseName,\r\n TableName,\r\n RowCount, \r\n HotExtentSize,\r\n SoftDelete,\r\n HotCache,\r\n OriginalSize, + \r\n TotalExtentSize,\r\n CompressionRatio, \r\n ExtentCount\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":" Table + details","transformations":[],"transparent":true,"type":"table"},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":12,"x":0,"y":117},"hiddenSeries":false,"id":62,"legend":{"avg":false,"current":true,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + TotalRowCountTable = ADXTableDetails\r\n | where TimeGenerated \u003e ago(7d)\r\n | + project Time = TimeGenerated, Category = strcat(TableName, \" (DB: \", DatabaseName, + \")\"), Value = toreal(TotalRowCount);\r\nlet topCategories = \r\n TotalRowCountTable\r\n | + summarize sum(Value) by Category\r\n | top 9 by sum_Value desc\r\n;\r\nTotalRowCountTable\r\n| + join kind = leftouter (topCategories) on Category\r\n| project Category = + coalesce(Category1, ''Other Tables''), Value, Time\r\n| summarize max(Value) + by Category, bin(Time, 1h)\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Top + tables by row count","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transformations":[],"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":12,"x":12,"y":117},"hiddenSeries":false,"id":63,"legend":{"avg":false,"current":true,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + HotExtentSizeTable = ADXTableDetails\r\n | where TimeGenerated \u003e ago(7d)\r\n | + project Time = TimeGenerated, Category = strcat(TableName, \" (DB: \", DatabaseName, + \")\"), Value = HotExtentSize;\r\nlet topCategories = \r\n HotExtentSizeTable\r\n | + summarize sum(Value) by Category\r\n | top 9 by sum_Value desc;\r\nHotExtentSizeTable\r\n| + join kind = leftouter (topCategories) on Category\r\n| project Category = + coalesce(Category1, ''Other Tables''), Value, Time\r\n| summarize max(Value) + by Category, bin(Time, 1h)\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Top + tables by hot cache size","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transformations":[],"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":12,"x":0,"y":127},"hiddenSeries":false,"id":64,"legend":{"avg":false,"current":true,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + TotalExtentCountTable = ADXTableDetails\r\n | where TimeGenerated \u003e + ago(7d)\r\n | project Time = TimeGenerated, Category = strcat(TableName, + \" (DB: \", DatabaseName, \")\"), Value = toreal(TotalExtentCount);\r\nlet + topCategories = \r\n TotalExtentCountTable\r\n | summarize sum(Value) + by Category\r\n | top 9 by sum_Value desc\r\n;\r\nTotalExtentCountTable\r\n| + join kind = leftouter (topCategories) on Category\r\n| project Category = + coalesce(Category1, ''Other Tables''), Value, Time\r\n| summarize max(Value) + by Category, bin(Time, 1h)\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Top + tables by extent count","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transformations":[],"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":10,"w":12,"x":12,"y":127},"hiddenSeries":false,"id":65,"legend":{"avg":false,"current":true,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + TotalExtentSizeTable = ADXTableDetails\r\n | where TimeGenerated \u003e + ago(7d)\r\n | project Time = TimeGenerated, Category = strcat(TableName, + \" (DB: \", DatabaseName, \")\"), Value = TotalExtentSize;\r\nlet topCategories + = \r\n TotalExtentSizeTable\r\n | summarize sum(Value) by Category\r\n | + top 9 by sum_Value desc;\r\nTotalExtentSizeTable\r\n| join kind = leftouter + (topCategories) on Category\r\n| project Category = coalesce(Category1, ''Other + Tables''), Value, Time\r\n| summarize max(Value) by Category, bin(Time, 1h)\r\n","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Top + tables by extent size","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transformations":[],"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":137},"id":67,"panels":[],"title":"Cache","type":"row"},{"datasource":"$ds","description":"This + page presents data based on the Time Range parameter. You can change the Time + Range parameter to present data starting from 05/25/21 ,11:38 PM (based on + your oldest diagnostic logs data).\n The table names and the Cache policy + column refreshes every 8 hours.\n Notice the queries statistics presented + are based only on queries that scanned data. For instance queries that failed, + and queries with time operator of future don''t scan any data therefore would + not be part of the queries statistics presented.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":24,"x":0,"y":138},"id":72,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"let + TableUsageStatsWithLookBack = ADXTableUsageStatistics\r\n | where TimeGenerated + \u003e ago(7d)\r\n | extend LookBackPeriod = datetime_diff(''day'', StartedOn, + MinCreatedOn) \r\n | summarize CountQueries=count() by DatabaseName, TableName, + LookBackPeriod;\r\nlet sumAllQueries = TableUsageStatsWithLookBack\r\n | + summarize sumQueries=sum(CountQueries) by DatabaseName, TableName;\r\nlet + percentileLookBackTable= TableUsageStatsWithLookBack\r\n | summarize percentile_LookbackDuration_ + = percentilesw(LookBackPeriod, CountQueries, 95) by DatabaseName, TableName;\r\nlet + defaultRetention = 365d * 10;\r\nADXTableDetails \r\n| where TimeGenerated + \u003e= ago(1d) // so we filter out tables that are deprecated\r\n| summarize + arg_max(TimeGenerated, *) by DatabaseName, TableName\r\n| extend RetentionPolicy + = iff(isnull(RetentionPolicy) or RetentionPolicy == \"null\", defaultRetention, + totimespan(parse_json(tostring(RetentionPolicy)).SoftDeletePeriod)),\r\n CachingPolicy + = iff(isnull(CachingPolicy) or RetentionPolicy == \"null\", defaultRetention, + totimespan(parse_json(tostring(CachingPolicy)).DataHotSpan))\r\n| extend ActiveCachingPolicy + = min_of(CachingPolicy, RetentionPolicy)\r\n| join kind = leftouter (percentileLookBackTable) + on DatabaseName, TableName\r\n| join kind = leftouter (sumAllQueries) on DatabaseName, + TableName\r\n| where DatabaseName != \"KustoMonitoringPersistentDatabase\"\r\n| + top 351 by HotExtentSize desc\r\n| project DatabaseName, TableName, CacheSize + = HotExtentSize, format_timespan(ActiveCachingPolicy, ''d''), \r\n sumQueries=sumQueries, + QueryPeriod = percentile_LookbackDuration_","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Table + usage details","transformations":[],"transparent":true,"type":"table"},{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":142},"id":69,"panels":[],"title":"Ingestion","type":"row"},{"datasource":"$ds","description":"","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":null,"filterable":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"gridPos":{"h":4,"w":8,"x":0,"y":143},"id":73,"options":{"showHeader":true},"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"//SucceededIngestion\r\n//| + where TimeGenerated \u003e ago(7d)\r\n//| parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n//| where cluster_name == ''mitulktest''\r\n//| summarize + count=dcount(IngestionSourcePath) by Database, Table\r\n//| order by [''count''],Database, + Table\r\nlet tenant=\r\n FailedIngestion\r\n | where TimeGenerated \u003e + ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | distinct + TenantId\r\n | take 1; //choose one tenant as logs are transferred to many + tenants which represents workSpace\r\nlet failures = FailedIngestion\r\n | + where TimeGenerated \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | where + TenantId == toscalar(tenant)\r\n | summarize f_count=count() by Database, + Table;\r\nlet tenant_success=\r\n SucceededIngestion\r\n | where TimeGenerated + \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | distinct + TenantId\r\n | take 1; //choose one tenant as logs are transferred to many + tenants which represents workSpace\r\nlet success = SucceededIngestion\r\n | + where TimeGenerated \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | where + TenantId == toscalar(tenant_success)\r\n | summarize s_count=count() by + Database, Table;\r\nsuccess\r\n| join kind=leftouter failures on Database, + Table\r\n| extend f_count = iif(isnull(f_count), 0, f_count)\r\n| extend s_count + = iif(isnull(s_count), 0, s_count)\r\n| extend overall = iif(isnull(s_count), + 0.0, s_count * 100.0 / (s_count + f_count))\r\n| project Database, Table, + s_count, overall\r\n| order by s_count, Database, Table","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"DiscoveryLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub"}],"timeFrom":null,"timeShift":null,"title":"Succeeded + ingestions by table","transformations":[],"transparent":true,"type":"table"},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","description":"Time + from when a message is discovered by Azure Data Explorer, until its content + is received by the Engine Storage for processing.","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":8,"x":8,"y":143},"hiddenSeries":false,"id":74,"legend":{"avg":true,"current":false,"max":false,"min":false,"show":true,"total":false,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"//SucceededIngestion\r\n//| + where TimeGenerated \u003e ago(7d)\r\n//| parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n//| where cluster_name == ''mitulktest''\r\n//| summarize + count=dcount(IngestionSourcePath) by Database, Table\r\n//| order by [''count''],Database, + Table\r\nlet tenant=\r\n FailedIngestion\r\n | where TimeGenerated \u003e + ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | distinct + TenantId\r\n | take 1; //choose one tenant as logs are transferred to many + tenants which represents workSpace\r\nlet failures = FailedIngestion\r\n | + where TimeGenerated \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | where + TenantId == toscalar(tenant)\r\n | summarize f_count=count() by Database, + Table;\r\nlet tenant_success=\r\n SucceededIngestion\r\n | where TimeGenerated + \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | distinct + TenantId\r\n | take 1; //choose one tenant as logs are transferred to many + tenants which represents workSpace\r\nlet success = SucceededIngestion\r\n | + where TimeGenerated \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | where + TenantId == toscalar(tenant_success)\r\n | summarize s_count=count() by + Database, Table;\r\nsuccess\r\n| join kind=leftouter failures on Database, + Table\r\n| extend f_count = iif(isnull(f_count), 0, f_count)\r\n| extend s_count + = iif(isnull(s_count), 0, s_count)\r\n| extend overall = iif(isnull(s_count), + 0.0, s_count * 100.0 / (s_count + f_count))\r\n| project Database, Table, + s_count, overall\r\n| order by s_count, Database, Table","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ComponentType","filter":"StorageEngine","operator":"eq"}],"dimensions":[{"text":"Database","value":"Database"},{"text":"Component + Type","value":"ComponentType"}],"metricDefinition":"$ns","metricName":"StageLatency","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Stage + latency (accumulative latency)","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transformations":[],"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}},{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"$ds","description":"Number + of blobs processed by the Storage Engine.","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":8,"x":16,"y":143},"hiddenSeries":false,"id":75,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"appInsights":{"dimension":[],"metricName":"select","timeGrain":"auto"},"azureLogAnalytics":{"query":"//SucceededIngestion\r\n//| + where TimeGenerated \u003e ago(7d)\r\n//| parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n//| where cluster_name == ''mitulktest''\r\n//| summarize + count=dcount(IngestionSourcePath) by Database, Table\r\n//| order by [''count''],Database, + Table\r\nlet tenant=\r\n FailedIngestion\r\n | where TimeGenerated \u003e + ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | distinct + TenantId\r\n | take 1; //choose one tenant as logs are transferred to many + tenants which represents workSpace\r\nlet failures = FailedIngestion\r\n | + where TimeGenerated \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | where + TenantId == toscalar(tenant)\r\n | summarize f_count=count() by Database, + Table;\r\nlet tenant_success=\r\n SucceededIngestion\r\n | where TimeGenerated + \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | distinct + TenantId\r\n | take 1; //choose one tenant as logs are transferred to many + tenants which represents workSpace\r\nlet success = SucceededIngestion\r\n | + where TimeGenerated \u003e ago(7d)\r\n | parse _ResourceId with * \"providers/microsoft.kusto/clusters/\" + cluster_name\r\n | where cluster_name == ''mitulktest''\r\n | where + TenantId == toscalar(tenant_success)\r\n | summarize s_count=count() by + Database, Table;\r\nsuccess\r\n| join kind=leftouter failures on Database, + Table\r\n| extend f_count = iif(isnull(f_count), 0, f_count)\r\n| extend s_count + = iif(isnull(s_count), 0, s_count)\r\n| extend overall = iif(isnull(s_count), + 0.0, s_count * 100.0 / (s_count + f_count))\r\n| project Database, Table, + s_count, overall\r\n| order by s_count, Database, Table","resultFormat":"time_series","workspace":"$ws"},"azureMonitor":{"aggOptions":["Total","Average","Minimum","Maximum"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ComponentType","filter":"StorageEngine","operator":"eq"}],"dimensions":[{"text":"Database","value":"Database"},{"text":"Component + Type","value":"ComponentType"},{"text":"Component Name","value":"ComponentName"}],"metricDefinition":"$ns","metricName":"BlobsProcessed","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"thresholds":[],"timeFrom":null,"timeRegions":[],"timeShift":null,"title":"Data + Processed Successfuly","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"transformations":[],"transparent":true,"type":"graph","xaxis":{"buckets":null,"mode":"time","name":null,"show":true,"values":[]},"yaxes":[{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true},{"format":"short","label":null,"logBase":1,"max":null,"min":null,"show":true}],"yaxis":{"align":false,"alignLevel":null}}],"refresh":false,"schemaVersion":27,"style":"dark","tags":[],"templating":{"list":[{"current":{},"description":null,"error":null,"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"allValue":null,"current":{},"datasource":"$ds","definition":"subscriptions()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Subscription","multi":false,"name":"sub","options":[],"query":"subscriptions()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{},"datasource":"$ds","definition":"ResourceGroups($sub)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Resource + Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{"selected":false,"text":"Microsoft.Kusto/clusters","value":"Microsoft.Kusto/clusters"},"description":null,"error":null,"hide":0,"includeAll":false,"label":"Namespace","multi":false,"name":"ns","options":[{"selected":true,"text":"Microsoft.Kusto/clusters","value":"Microsoft.Kusto/clusters"}],"query":"Microsoft.Kusto/clusters","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"datasource":"$ds","definition":"ResourceNames($sub, + $rg, $ns)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"resource","options":[],"query":"ResourceNames($sub, + $rg, $ns)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{},"datasource":"$ds","definition":"workspaces()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Workspace","multi":false,"name":"ws","options":[],"query":"workspaces()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-12h","to":"now"},"title":"Azure + / Insights / Data Explorer Clusters","uid":"8UDB1s3Gk","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-IKT8QoZ7z7NeN7aIWH9XoQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574414.177.440.730015|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/tQZAMYrMk + response: + body: + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-insights-key-vaults\",\"url\":\"/d/tQZAMYrMk/azure-insights-key-vaults\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:26Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"keyvault.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"7.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure + Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"graph\",\"name\":\"Graph\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"The + dashboard provides insights of Azure Key Vaults overview, failures and operations.\",\"editable\":true,\"id\":11,\"links\":[],\"panels\":[{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":0},\"id\":25,\"panels\":[],\"title\":\"Overview\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"percentage\",\"steps\":[{\"color\":\"green\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":7,\"w\":19,\"x\":0,\"y\":1},\"id\":9,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"none\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"Availability\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"},{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiResult\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"P1D\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"hide\":false,\"queryType\":\"Azure + Monitor\",\"refId\":\"B\",\"subscription\":\"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc\"},{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiLatency\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"P1D\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"hide\":false,\"queryType\":\"Azure + Monitor\",\"refId\":\"C\",\"subscription\":\"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc\"}],\"title\":\"Availability, + Requests and Latency\",\"type\":\"stat\"},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"custom\":{}},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":0,\"y\":8},\"hiddenSeries\":false,\"id\":11,\"legend\":{\"avg\":false,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":true,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiHit\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Transactions + Over Time\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{},\"custom\":{},\"thresholds\":{\"mode\":\"absolute\",\"steps\":[]},\"unit\":\"ms\"},\"overrides\":[]},\"fill\":0,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":6,\"y\":8},\"hiddenSeries\":false,\"id\":13,\"legend\":{\"avg\":true,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":false,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"connected\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiLatency\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Overall + Latency\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"ms\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"custom\":{}},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":12,\"y\":8},\"hiddenSeries\":false,\"id\":15,\"legend\":{\"avg\":true,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":false,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"Availability\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Availability\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"percent\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"custom\":{}},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":18,\"y\":8},\"hiddenSeries\":false,\"id\":17,\"legend\":{\"avg\":false,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":true,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiHit\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Request + Types over Time\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":16},\"id\":23,\"panels\":[],\"title\":\"Failures\",\"type\":\"row\"},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"custom\":{}},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":0,\"y\":17},\"hiddenSeries\":false,\"id\":2,\"legend\":{\"avg\":false,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":true,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[{\"dimension\":\"StatusCodeClass\",\"filter\":\"2xx\",\"operator\":\"eq\"}],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiResult\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Successes + (2xx)\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"custom\":{}},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":6,\"y\":17},\"hiddenSeries\":false,\"id\":7,\"legend\":{\"avg\":false,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":true,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[{\"dimension\":\"StatusCodeClass\",\"filter\":\"4xx\",\"operator\":\"eq\"}],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiResult\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Failures + (4xx)\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"custom\":{}},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":12,\"y\":17},\"hiddenSeries\":false,\"id\":6,\"legend\":{\"avg\":true,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":false,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[{\"dimension\":\"StatusCode\",\"filter\":\"429\",\"operator\":\"eq\"}],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiResult\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Throttling + (429)\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"custom\":{}},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":8,\"w\":6,\"x\":18,\"y\":17},\"hiddenSeries\":false,\"id\":4,\"legend\":{\"avg\":false,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":true,\"values\":true},\"lines\":true,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":false,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[{\"dimension\":\"StatusCode\",\"filter\":\"401\",\"operator\":\"eq\"}],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiResult\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"queryType\":\"Azure + Monitor\",\"refId\":\"A\",\"subscription\":\"$sub\"},{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Count\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[{\"dimension\":\"StatusCode\",\"filter\":\"403\",\"operator\":\"eq\"}],\"dimensions\":[{\"text\":\"Activity + Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status + Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"ServiceApiResult\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 + minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 + minutes\",\"value\":\"PT15M\"},{\"text\":\"30 minutes\",\"value\":\"PT30M\"},{\"text\":\"1 + hour\",\"value\":\"PT1H\"},{\"text\":\"6 hours\",\"value\":\"PT6H\"},{\"text\":\"12 + hours\",\"value\":\"PT12H\"},{\"text\":\"1 day\",\"value\":\"P1D\"}],\"top\":\"10\"},\"hide\":false,\"queryType\":\"Azure + Monitor\",\"refId\":\"B\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Authentication + Errors (401 \\u0026 403)\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":25},\"id\":21,\"panels\":[],\"title\":\"Operations\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[]}},\"overrides\":[]},\"gridPos\":{\"h\":5,\"w\":3,\"x\":0,\"y\":26},\"id\":19,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"area\",\"justifyMode\":\"auto\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureLogAnalytics\":{\"query\":\"let + rawData = AzureDiagnostics \\r\\n // Ignore Authentication operations with + a 401. This is normal when using Key Vault SDK, first an unauthenticated request + is done then the response is used for authentication.\\r\\n | where Category + == \\\"AuditEvent\\\" and not (OperationName == \\\"Authentication\\\" and + httpStatusCode_d == 401)\\r\\n | where OperationName in ('SecretGet', 'VaultGet') + or '*' in ('SecretGet', 'VaultGet')\\r\\n // Create ResultStatus with all + the 'success' results bucked as 'Success'\\r\\n // Certain operations like + StorageAccountAutoSyncKey have no ResultSignature, for now set to 'Success' + as well\\r\\n | extend ResultStatus = case (ResultSignature == \\\"\\\", + \\\"Success\\\",\\r\\n ResultSignature == \\\"OK\\\", \\\"Success\\\",\\r\\n + \ ResultSignature == \\\"Accepted\\\", \\\"Success\\\",\\r\\n ResultSignature); + \ \\r\\nrawData \\r\\n| make-series Trend = count() + default = 0 on TimeGenerated from ago(1d) to now() step 30m by ResultStatus\\r\\n| + join kind = inner (rawData\\n | where $__timeFilter(TimeGenerated)\\r\\n + \ | summarize Count = count() by ResultStatus\\r\\n )\\r\\n on ResultStatus\\n + \ \\r\\n\\r\\n| project ResultStatus, Count, Trend\\r\\n| order by Count + desc;\\r\",\"resultFormat\":\"table\",\"workspace\":\"$ws\"},\"queryType\":\"Azure + Log Analytics\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"timeFrom\":null,\"timeShift\":null,\"title\":\"Success + Operations\",\"type\":\"stat\"},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{},\"custom\":{},\"thresholds\":{\"mode\":\"absolute\",\"steps\":[]},\"unit\":\"short\"},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":5,\"w\":7,\"x\":3,\"y\":26},\"hiddenSeries\":false,\"id\":35,\"legend\":{\"avg\":false,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":false,\"values\":false},\"lines\":false,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":true,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureLogAnalytics\":{\"query\":\"let + rawData = AzureDiagnostics \\r\\n // Ignore Authentication operations with + a 401. This is normal when using Key Vault SDK, first an unauthenticated request + is done then the response is used for authentication.\\r\\n | where Category + == \\\"AuditEvent\\\" and not (OperationName == \\\"Authentication\\\" and + httpStatusCode_d == 401)\\r\\n | where OperationName in ('SecretGet', 'VaultGet') + or '*' in ('SecretGet', 'VaultGet')\\r\\n // Create ResultStatus with all + the 'success' results bucked as 'Success'\\r\\n // Certain operations like + StorageAccountAutoSyncKey have no ResultSignature, for now set to 'Success' + as well\\r\\n | extend ResultStatus = case (ResultSignature == \\\"\\\", + \\\"Success\\\",\\r\\n ResultSignature == \\\"OK\\\", \\\"Success\\\",\\r\\n + \ ResultSignature == \\\"Accepted\\\", \\\"Success\\\",\\r\\n ResultSignature); + \ \\r\\nrawData\\n| where $__timeFilter(TimeGenerated)\\n| + extend resultCount = iif(ResultStatus == \\\"Success\\\", 1, 0)\\n| summarize + count(resultCount) by bin(TimeGenerated, 30m)\\n| sort by TimeGenerated;\\n\\r\\r\\n\\r\",\"resultFormat\":\"table\",\"workspace\":\"$ws\"},\"queryType\":\"Azure + Log Analytics\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"Success + Operations Counts\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":\"0\",\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[]}},\"overrides\":[]},\"gridPos\":{\"h\":5,\"w\":3,\"x\":10,\"y\":26},\"id\":26,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"changeCount\"],\"fields\":\"\",\"values\":true},\"text\":{},\"textMode\":\"value\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureLogAnalytics\":{\"query\":\"let + rawData = AzureDiagnostics \\r\\n // Ignore Authentication operations with + a 401. This is normal when using Key Vault SDK, first an unauthenticated request + is done then the response is used for authentication.\\r\\n | where Category + == \\\"AuditEvent\\\" and not (OperationName == \\\"Authentication\\\" and + httpStatusCode_d == 401)\\r\\n | where OperationName in ('SecretGet', 'VaultGet') + or '*' in ('SecretGet', 'VaultGet')\\r; \\r\\nrawData + \\r\\n| make-series Trend = count() default = 0 on TimeGenerated from ago(1d) + to now() step 30m by ResultSignature \\n| join kind = inner (rawData\\n | + where $__timeFilter(TimeGenerated)\\r\\n | summarize Count = count() by + ResultSignature \\n )\\r\\n on ResultSignature \\n\\r\\n\\r\\n| project + ResultSignature , Count, Trend\\r\\n| order by Count desc;\",\"resultFormat\":\"table\",\"workspace\":\"$ws\"},\"queryType\":\"Azure + Log Analytics\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"timeFrom\":null,\"timeShift\":null,\"title\":\"All + Operations\",\"type\":\"stat\"},{\"aliasColors\":{},\"bars\":false,\"dashLength\":10,\"dashes\":false,\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{},\"custom\":{},\"thresholds\":{\"mode\":\"absolute\",\"steps\":[]},\"unit\":\"short\"},\"overrides\":[]},\"fill\":1,\"fillGradient\":0,\"gridPos\":{\"h\":5,\"w\":7,\"x\":13,\"y\":26},\"hiddenSeries\":false,\"id\":36,\"legend\":{\"avg\":false,\"current\":false,\"max\":false,\"min\":false,\"show\":true,\"total\":false,\"values\":false},\"lines\":false,\"linewidth\":1,\"nullPointMode\":\"null\",\"options\":{\"alertThreshold\":true},\"percentage\":false,\"pluginVersion\":\"7.4.3\",\"pointradius\":2,\"points\":true,\"renderer\":\"flot\",\"seriesOverrides\":[],\"spaceLength\":10,\"stack\":false,\"steppedLine\":false,\"targets\":[{\"azureLogAnalytics\":{\"query\":\"let + rawData = AzureDiagnostics \\r\\n // Ignore Authentication operations with + a 401. This is normal when using Key Vault SDK, first an unauthenticated request + is done then the response is used for authentication.\\r\\n | where Category + == \\\"AuditEvent\\\" and not (OperationName == \\\"Authentication\\\" and + httpStatusCode_d == 401)\\r\\n | where OperationName in ('SecretGet', 'VaultGet') + or '*' in ('SecretGet', 'VaultGet')\\r; \\r\\nrawData\\n| + where $__timeFilter(TimeGenerated)\\n| summarize count(ResultSignature ) by + bin(TimeGenerated, 30m)\\n| sort by TimeGenerated;\\n\\r\\r\\n\\r\",\"resultFormat\":\"table\",\"workspace\":\"$ws\"},\"queryType\":\"Azure + Log Analytics\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"thresholds\":[],\"timeFrom\":null,\"timeRegions\":[],\"timeShift\":null,\"title\":\"All + Operations Counts\",\"tooltip\":{\"shared\":true,\"sort\":0,\"value_type\":\"individual\"},\"type\":\"graph\",\"xaxis\":{\"buckets\":null,\"mode\":\"time\",\"name\":null,\"show\":true,\"values\":[]},\"yaxes\":[{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":\"0\",\"show\":true},{\"format\":\"short\",\"label\":null,\"logBase\":1,\"max\":null,\"min\":null,\"show\":true}],\"yaxis\":{\"align\":false,\"alignLevel\":null}},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{\"align\":null,\"filterable\":false},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[]},\"gridPos\":{\"h\":4,\"w\":24,\"x\":0,\"y\":31},\"id\":28,\"options\":{\"showHeader\":true},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureLogAnalytics\":{\"query\":\"let + data = AzureDiagnostics \\r\\n | where TimeGenerated \\u003e ago(1d)\\r\\n + \ // Ignore Authentication operations with a 401. This is normal when using + Key Vault SDK, first an unauthenticated request is done then the response + is used for authentication.\\r\\n | where Category == \\\"AuditEvent\\\" + and not (OperationName == \\\"Authentication\\\" and httpStatusCode_d == 401)\\r\\n + \ | where OperationName in ('SecretGet', 'VaultGet') or '*' in ('SecretGet', + 'VaultGet')\\r\\n // Create ResultStatus with all the 'success' results + bucked as 'Success'\\r\\n // Certain operations like StorageAccountAutoSyncKey + have no ResultSignature, for now set to 'Success' as well\\r\\n | extend + ResultStatus = case (ResultSignature == \\\"\\\", \\\"Success\\\",\\r\\n ResultSignature + == \\\"OK\\\", \\\"Success\\\",\\r\\n ResultSignature == \\\"Accepted\\\", + \\\"Success\\\",\\r\\n ResultSignature)\\r\\n | where ResultStatus + == 'All' or 'All' == 'All';\\r\\ndata\\r\\n// Data aggregated to the OperationName\\r\\n| + summarize OperationCount = count(), SuccessCount = countif(ResultStatus == + \\\"Success\\\"), FailureCount = countif(ResultStatus != \\\"Success\\\"), + PDurationMs = percentile(DurationMs, 99) by Resource, OperationName\\r\\n| + join kind=inner (data\\r\\n | make-series Trend = count() default = 0 on + TimeGenerated from ago(1d) to now() step 30m by OperationName\\r\\n | project-away + TimeGenerated)\\r\\n on OperationName\\r\\n| order by OperationCount desc\\r\\n| + project Name = strcat('\u26A1 ', OperationName), Id = strcat(Resource, '/', + OperationName), ['Operation count'] = OperationCount, ['Operation count trend'] + = Trend, ['Success count'] = SuccessCount, ['Failure count'] = FailureCount, + ['p99 Duration'] = PDurationMs\",\"resultFormat\":\"time_series\",\"workspace\":\"$ws\"},\"queryType\":\"Azure + Log Analytics\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"title\":\"Operations + by Name\",\"type\":\"table\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{\"align\":null,\"filterable\":false},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Duration\"},\"properties\":[{\"id\":\"custom.width\",\"value\":86}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Result\"},\"properties\":[{\"id\":\"custom.width\",\"value\":94}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Operation\"},\"properties\":[{\"id\":\"custom.width\",\"value\":136}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Time\"},\"properties\":[{\"id\":\"custom.width\",\"value\":219}]}]},\"gridPos\":{\"h\":8,\"w\":24,\"x\":0,\"y\":35},\"id\":30,\"options\":{\"showHeader\":true,\"sortBy\":[]},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureLogAnalytics\":{\"query\":\"let + gridRowSelected = dynamic({\\\"Id\\\": \\\"*\\\"});\\r\\nlet resourceName + = split(gridRowSelected.Id, \\\"/\\\")[0];\\r\\nlet operationName = split(gridRowSelected.Id, + \\\"/\\\")[1];\\r\\nAzureDiagnostics \\r\\n| where TimeGenerated \\u003e ago(1d)\\r\\n// + Ignore Authentication operations with a 401. This is normal when using Key + Vault SDK, first an unauthenticated request is done then the response is used + for authentication.\\r\\n| where Category == \\\"AuditEvent\\\" and not (OperationName + == \\\"Authentication\\\" and httpStatusCode_d == 401)\\r\\n| where OperationName + in ('SecretGet', 'VaultGet') or '*' in ('SecretGet', 'VaultGet')\\r\\n| where + resourceName == \\\"*\\\" or Resource == resourceName\\r\\n| where operationName + == \\\"\\\" or OperationName == operationName\\r\\n// Create ResultStatus + with all the 'success' results bucked as 'Success'\\r\\n// Certain operations + like StorageAccountAutoSyncKey have no ResultSignature, for now set to 'Success' + as well\\r\\n| extend ResultStatus = case (ResultSignature == \\\"\\\", \\\"Success\\\",\\r\\n + \ ResultSignature == \\\"OK\\\", \\\"Success\\\",\\r\\n ResultSignature + == \\\"Accepted\\\", \\\"Success\\\",\\r\\n ResultSignature)\\r\\n| where + ResultStatus == 'All' or 'All' == 'All'\\r\\n| extend p = pack_all()\\r\\n| + mv-apply p on \\r\\n ( \\r\\n extend key = tostring(bag_keys(p)[0])\\r\\n + \ | where isnotempty(p[key]) and isnotnull(p[key])\\r\\n | where key + !in (\\\"SourceSystem\\\", \\\"Type\\\")\\r\\n | summarize make_bag(p)\\r\\n + \ )\\r\\n| project Time=TimeGenerated, Operation=OperationName, Result=ResultSignature, + Duration = DurationMs, [\\\"Details\\\"]=bag_p\\r\\n| sort by Time desc\",\"resultFormat\":\"time_series\",\"workspace\":\"$ws\"},\"queryType\":\"Azure + Log Analytics\",\"refId\":\"A\",\"subscription\":\"$sub\"}],\"title\":\"Operations + by Time\",\"type\":\"table\"}],\"refresh\":false,\"schemaVersion\":27,\"style\":\"dark\",\"tags\":[],\"templating\":{\"list\":[{\"current\":{},\"hide\":0,\"includeAll\":false,\"label\":\"Datasource\",\"multi\":false,\"name\":\"ds\",\"options\":[],\"query\":\"grafana-azure-monitor-datasource\",\"queryValue\":\"\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"type\":\"datasource\"},{\"allValue\":null,\"current\":{},\"datasource\":\"${ds}\",\"definition\":\"subscriptions()\",\"description\":null,\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Subscription\",\"multi\":false,\"name\":\"sub\",\"options\":[],\"query\":\"subscriptions()\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tags\":[],\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false},{\"allValue\":null,\"current\":{},\"datasource\":\"${ds}\",\"definition\":\"ResourceGroups($sub)\",\"description\":null,\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Resource + Group\",\"multi\":false,\"name\":\"rg\",\"options\":[],\"query\":\"ResourceGroups($sub)\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tags\":[],\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false},{\"hide\":2,\"label\":\"Namespace\",\"name\":\"ns\",\"query\":\"Microsoft.KeyVault/vaults\",\"skipUrlSync\":false,\"type\":\"constant\"},{\"allValue\":null,\"current\":{},\"datasource\":\"${ds}\",\"definition\":\"ResourceNames($sub, + $rg, $ns)\",\"description\":null,\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Resource\",\"multi\":false,\"name\":\"resource\",\"options\":[],\"query\":\"ResourceNames($sub, + $rg, $ns)\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tags\":[],\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false},{\"allValue\":null,\"current\":{},\"datasource\":\"${ds}\",\"definition\":\"Workspaces($sub)\",\"description\":null,\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Workspace\",\"multi\":false,\"name\":\"ws\",\"options\":[],\"query\":\"Workspaces($sub)\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tags\":[],\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false}]},\"time\":{\"from\":\"now-24h\",\"to\":\"now\"},\"title\":\"Azure + / Insights / Key Vaults\",\"uid\":\"tQZAMYrMk\",\"version\":2}}" + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-KmTW04WftFtVIjZGhyvu8Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574414.531.443.867667|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/3n2E8CrGk + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:54Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"storage.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"9.0.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"timeseries","name":"Time + series","type":"panel","version":""}],"description":"A dashboard that provides + a unified view of Azure Storage services performance, capacity, and availability + metrics.","editable":true,"id":6,"iteration":null,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"green","value":100}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":0,"y":0},"id":7,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"/^Availability$/","values":false},"showThresholdLabels":false,"showThresholdMarkers":false,"text":{}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"title":"Availability","transparent":true,"type":"gauge"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"blue","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":3,"y":0},"id":6,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"PT5M","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"transparent":true,"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"purple","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":6,"y":0},"id":8,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessE2ELatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"transparent":true,"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"purple","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":9,"y":0},"id":9,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessServerLatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"transparent":true,"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"blue","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":12,"y":0},"id":10,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total","Average","Minimum","Maximum"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Ingress","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"transparent":true,"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"blue","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":15,"y":0},"id":11,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total","Average","Minimum","Maximum"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Egress","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"transparent":true,"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":4},"id":2,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"multi","sort":"none"}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"Table + transactions","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"Blob + transactions","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"File + transactions","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"},{"text":"File + Share","value":"FileShare"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"Queue + transactions","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"}],"title":"Transactions by storage + type","transformations":[],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":4},"id":14,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"multi","sort":"none"}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"}],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"title":"Transactions by API + Name","transformations":[],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"graph":false,"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":13},"id":13,"options":{"graph":{},"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"multi","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Table + capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"TableCapacity","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"select","resourceName":"select","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Blob + capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Blob + type","value":"BlobType"},{"text":"Blob tier","value":"Tier"}],"metricName":"BlobCapacity","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"File + capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"File + Share","value":"FileShare"}],"metricName":"FileCapacity","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Queue + capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"QueueCapacity","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"}],"title":"Capacity by storage + type","transformations":[],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"graph":false,"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":13},"id":12,"options":{"graph":{},"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Table + availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Blob + availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"File + availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"},{"text":"File + Share","value":"FileShare"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Queue + availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"}],"title":"Availability by storage + type","transformations":[],"type":"timeseries"},{"collapsed":false,"datasource":{"uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":22},"id":52,"panels":[],"targets":[{"datasource":{"uid":"${ds}"},"refId":"A"}],"title":"Failures","type":"row"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Transactions + ClientOtherError"},"properties":[{"id":"color","value":{"fixedColor":"red","mode":"fixed"}},{"id":"displayName","value":"ClientOtherError"}]},{"matcher":{"id":"byName","options":"Transactions + Success"},"properties":[{"id":"displayName","value":"Success"}]}]},"gridPos":{"h":6,"w":6,"x":0,"y":23},"id":16,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ResponseType","filters":[],"operator":"eq"}],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"red","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"graph":false,"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"red","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byName","options":"Transactions + Success"},"properties":[{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]}]},"gridPos":{"h":6,"w":18,"x":6,"y":23},"id":18,"options":{"graph":{},"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ResponseType","filters":[],"operator":"eq"}],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"displayMode":"auto","filterable":false,"inspect":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"blue","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"basic"}]}]},"gridPos":{"h":8,"w":12,"x":0,"y":29},"id":20,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":false},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"},{"dimension":"ResponseType","filters":[],"operator":"eq"}],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"title":"Blob Services","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"displayMode":"auto","filterable":false,"inspect":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"blue","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"basic"}]}]},"gridPos":{"h":8,"w":12,"x":12,"y":29},"id":22,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":false},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"},{"dimension":"ResponseType","filters":[],"operator":"eq"}],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"},{"text":"File + Share","value":"FileShare"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"title":"File Services","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"displayMode":"auto","filterable":false,"inspect":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"blue","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"basic"}]}]},"gridPos":{"h":8,"w":12,"x":0,"y":37},"id":24,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":false},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"},{"dimension":"ResponseType","filters":[],"operator":"eq"}],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"title":"Table Services","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"displayMode":"auto","filterable":false,"inspect":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"blue","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Total"},"properties":[{"id":"custom.displayMode","value":"basic"}]}]},"gridPos":{"h":8,"w":12,"x":12,"y":37},"id":26,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":false},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Total"],"aggregation":"Total","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"},{"dimension":"ResponseType","filters":[],"operator":"eq"}],"dimensions":[{"text":"Response + type","value":"ResponseType"},{"text":"Geo type","value":"GeoType"},{"text":"API + name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Transactions","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"}],"title":"Queue Services","transformations":[{"id":"reduce","options":{"reducers":["sum"]}}],"type":"table"},{"collapsed":false,"datasource":{"uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":45},"id":50,"panels":[],"targets":[{"datasource":{"uid":"${ds}"},"refId":"A"}],"title":"Performance","type":"row"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"dark-green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Success + Server Latency"},"properties":[{"id":"color","value":{"fixedColor":"blue","mode":"fixed"}}]}]},"gridPos":{"h":6,"w":6,"x":0,"y":46},"id":28,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessE2ELatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessServerLatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"}],"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"graph":false,"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"dark-green","value":null}]}},"overrides":[{"matcher":{"id":"byName","options":"Success + Server Latency"},"properties":[{"id":"color","value":{"fixedColor":"blue","mode":"fixed"}}]}]},"gridPos":{"h":6,"w":18,"x":6,"y":46},"id":30,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessE2ELatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessServerLatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"displayMode":"auto","filterable":false,"inspect":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"blue","value":null}]},"unit":"ms"},"overrides":[{"matcher":{"id":"byName","options":"Mean"},"properties":[{"id":"custom.displayMode","value":"lcd-gauge"},{"id":"color","value":{"mode":"continuous-GrYlRd"}}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.displayMode","value":"gradient-gauge"},{"id":"color","value":{"fixedColor":"red","mode":"continuous-GrYlRd"}}]},{"matcher":{"id":"byName","options":"Min"},"properties":[{"id":"custom.displayMode","value":"gradient-gauge"},{"id":"color","value":{"fixedColor":"green","mode":"continuous-GrYlRd"}}]},{"matcher":{"id":"byName","options":"Field"},"properties":[{"id":"displayName","value":"Latency"}]}]},"gridPos":{"h":11,"w":24,"x":0,"y":52},"id":32,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"}],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessE2ELatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"}],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"SuccessServerLatency","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"}],"transformations":[{"id":"reduce","options":{"includeTimeField":false,"mode":"seriesToRows","reducers":["mean","max","min"]}},{"id":"sortBy","options":{"fields":{},"sort":[{"desc":true,"field":"Mean"}]}}],"type":"table"},{"collapsed":false,"datasource":{"uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":63},"id":48,"panels":[],"targets":[{"datasource":{"uid":"${ds}"},"refId":"A"}],"title":"Availability","type":"row"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + data comes from Storage metrics. It measures the availability of requests + on Storage accounts.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"green","value":100}]}},"overrides":[]},"gridPos":{"h":8,"w":24,"x":0,"y":64},"id":34,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"showThresholdLabels":false,"showThresholdMarkers":false,"text":{}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Account + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Blob + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Table + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"File + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"},{"text":"File + Share","value":"FileShare"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Queue + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"E","subscription":"$sub"}],"type":"gauge"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"displayMode":"auto","filterable":false,"inspect":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[]}},"overrides":[{"matcher":{"id":"byName","options":"Mean"},"properties":[{"id":"unit","value":"percent"},{"id":"custom.displayMode","value":"color-background"},{"id":"color","value":{"mode":"continuous-RdYlGr"}}]}]},"gridPos":{"h":8,"w":12,"x":0,"y":72},"id":36,"maxDataPoints":1,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":false},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"}],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"}],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"}],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"},{"text":"File + Share","value":"FileShare"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[{"dimension":"ApiName","filters":[],"operator":"eq"}],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"}],"title":"Availability by API + name","transformations":[{"id":"reduce","options":{"includeTimeField":false,"mode":"seriesToRows","reducers":["mean"]}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":72},"id":38,"options":{"legend":{"calcs":["sum"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"multi","sort":"none"}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Blob + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Table + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"File + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"},{"text":"File + Share","value":"FileShare"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Queue + Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 + minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 + hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"}],"title":"Availability Trend","transformations":[],"type":"timeseries"},{"collapsed":false,"datasource":{"uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":80},"id":46,"panels":[],"targets":[{"datasource":{"uid":"${ds}"},"refId":"A"}],"title":"Capacity","type":"row"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"dark-blue","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":24,"x":0,"y":81},"id":40,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Account + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"UsedCapacity","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Monitor","refId":"A","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Blob + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Blob + type","value":"BlobType"},{"text":"Blob tier","value":"Tier"}],"metricName":"BlobCapacity","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Table + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"TableCapacity","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"File + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"File + Share","value":"FileShare"}],"metricName":"FileCapacity","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Queue + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"QueueCapacity","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"E","subscription":"$sub"}],"type":"stat"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":4,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"decbytes"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":89},"id":42,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"multi","sort":"none"}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Blob + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Blob + type","value":"BlobType"},{"text":"Blob tier","value":"Tier"}],"metricName":"BlobCapacity","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Table + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"TableCapacity","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"File + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"File + Share","value":"FileShare"}],"metricName":"FileCapacity","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Queue + Capacity","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"QueueCapacity","metricNamespace":"microsoft.storage/storageaccounts/queueservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/queueServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"E","subscription":"$sub"}],"title":"Storage capacity","type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"graph":false,"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":4,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":89},"id":44,"options":{"graph":{},"legend":{"calcs":["mean"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Blob + Count","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Blob + type","value":"BlobType"},{"text":"Blob tier","value":"Tier"}],"metricName":"BlobCount","metricNamespace":"microsoft.storage/storageaccounts/blobservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/blobServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"B","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Table + Count","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"TableCount","metricNamespace":"microsoft.storage/storageaccounts/tableservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/tableServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"C","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"File + Count","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"File + Share","value":"FileShare"}],"metricName":"FileCount","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"D","subscription":"$sub"},{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","alias":"Queue + Count","allowedTimeGrainsMs":[3600000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricName":"FileCount","metricNamespace":"microsoft.storage/storageaccounts/fileservices","resourceGroup":"$rg","resourceName":"$resource/default","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource/fileServices/default","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + hour","value":"PT1H"}],"top":"10"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Monitor","refId":"E","subscription":"$sub"}],"title":"Storage count","type":"timeseries"}],"refresh":false,"schemaVersion":36,"style":"dark","tags":[],"templating":{"list":[{"current":{"selected":false,"text":"Azure + Monitor","value":"Azure Monitor"},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"subscriptions()","hide":0,"includeAll":false,"label":"Subscription","multi":false,"name":"sub","options":[],"query":"subscriptions()","refresh":2,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false},{"hide":2,"label":"Namespace","name":"ns","query":"Microsoft.Storage/storageAccounts","skipUrlSync":false,"type":"constant"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"ResourceGroups($sub)","hide":0,"includeAll":false,"label":"Resource + Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":2,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"ResourceNames($sub, + $rg, $ns)","hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"resource","options":[],"query":"ResourceNames($sub, + $rg, $ns)","refresh":2,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-6h","to":"now"},"timezone":"","title":"Azure + / Insights / Storage Accounts","uid":"3n2E8CrGk","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yHNaFCBDsrMgivjMMnUsbA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:13 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574414.774.435.6779|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByRG + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsRG.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time + series","type":"panel","version":""}],"description":"This dashboard shows + the performance and health of Azure Virtual Machines via different metrics + collected by Azure Monitor VM Insights. Filter data by Resource Group","editable":true,"id":10,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv + style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003eWelcome to + the Azure Monitor data source for Grafana. To learn more about it, visit our + \u003ca href=\"https://grafana.com/docs/grafana/latest/datasources/azuremonitor/\" + target=\"__blank\"\u003edocs\u003c/a\u003e. \u003c/p\u003e\n \u003cp\u003e Choose + the resource group(s) with VMs enabled with Azure Monitor VM Insights to get + started.\u003c/p\u003e\n\u003c/div\u003e","mode":"markdown"},"title":"How + to activate this dashboard","type":"text"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":5},"id":28,"panels":[],"title":"CPU + Utilization %","type":"row"},{"datasource":{"uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMax":100,"axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":10,"w":24,"x":0,"y":6},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet summary = InsightsMetrics\n| where + TimeGenerated between (startDateTime .. endDateTime)\n| where Origin == ''vm.azm.ms'' + and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'')\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, + Computer| top 10 by score;\nlet computerList=(summary\n| project ComputerId, + Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: string, + Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) []; \nlet + OmsNodeIdentityAndProps = computerList \n| extend NodeId = ComputerId \n| + extend Priority = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \nlet ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n| where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachine`alesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n + | extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n | where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n | extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n | summarize arg_max(TimeGenerated, + *) by Machine \n | extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity = iif(isnotempty(AzureVmScaleSetName), + strcat(AzureVmScaleSetInstanceId, ''|'', AzureVmScaleSetDeployment), ''''), + ComputerProps = pack(''type'', ''StandAloneNode'', ''name'', + DisplayName, ''mappingResourceId'', ResourceId, ''subscriptionId'', + AzureSubscriptionId, ''resourceGroup'', AzureResourceGroup, ''azureResourceId'', + _ResourceId), AzureCloudServiceNodeProps = pack(''type'', + ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n + | project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \n + let NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n + | summarize arg_max(Priority, *) by ComputerId;\n summary\n | join (InsightsMetrics \n + | where TimeGenerated between (startDateTime .. endDateTime) \n | where + Origin == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'') \n + | extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId) \n + | where ComputerId in (computerList) \n | summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId \n | sort by TimeGenerated asc) on ComputerId","resource":"/subscriptions/$sub","resultFormat":"table","workspace":""},"hide":false,"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + CPU Utilization %","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P5th":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}?/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/?${__data.fields.Type}?/${__data.fields[\"Resource + Name\"]}/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Resource + Group"},"properties":[{"id":"custom.width","value":136}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":111}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":105}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":101}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":99}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":98}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":16},"id":26,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 500;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'') \r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + summarize hint.shufflekey = ComputerId Average = avg(Val), Max = max(Val), + percentiles(Val, 5, 10, 50, 90, 95) by ComputerId, Computer, _ResourceId\r\n| + project ComputerId, Computer, Average, Max, P5th = percentile_Val_5, P10th + = percentile_Val_10, P50th = percentile_Val_50, P90th = percentile_Val_90, + P95th = percentile_Val_95, ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet + computerList = summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;let trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize hint.shufflekey = ComputerId + TrendValue = percentile(Val, 95) by ComputerId, Computer, bin(TimeGenerated, + trendBinSize)\r\n| project ComputerId, Computer\r\n| summarize hint.shufflekey + = ComputerId by ComputerId, Computer;\r\nsummaryPerComputer\r\n| join ( trend + ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| parse + tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName \"/virtualmachines/\" + vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" vmName\r\n| + parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup \"/providers/microsoft.compute/\" + typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) with * \"microsoft.compute/\" + typeScale \"/\" nameScale \"/virtualmachines\" remaining\r\n| project resourceGroup, + Average, P50th, P90th, P95th, Max, Computer, Type = iff(isnotempty(typeScale), + typeScale, typeVM), Name = iff(isnotempty(nameScale), nameScale, nameVM)\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"CPU + Utilization % Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"Max":false,"NodeId":true,"NodeProps":true,"P50th":false,"ResourceId":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","UseRelativeScale":"","list_TrendPoint":"95th Trend","resGroup":"Resource + Group","resourceGroup":"Resource Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":16},"id":46,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet summary = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize hint.shufflekey=ComputerId Average = + avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th = round(percentile(Val, + 10), 2), \r\nP50th = round(percentile(Val, 50), 2), P80th = round(percentile(Val, + 80), 2),\r\nP90th = round(percentile(Val, 90), 2), P95th = round(percentile(Val, + 95), 2) by ComputerId, Computer\r\n| top 10 by ${agg:text};\r\nlet computerList=(summary\r\n| + project ComputerId, Computer);\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n| + where TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachine`alesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n + | extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n | where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n | extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n | summarize + arg_max(TimeGenerated, *) by Machine \r\n | extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity = iif(isnotempty(AzureVmScaleSetName), + strcat(AzureVmScaleSetInstanceId, ''|'', AzureVmScaleSetDeployment), ''''), + ComputerProps = pack(''type'', ''StandAloneNode'', ''name'', + DisplayName, ''mappingResourceId'', ResourceId, ''subscriptionId'', + AzureSubscriptionId, ''resourceGroup'', AzureResourceGroup, ''azureResourceId'', + _ResourceId), AzureCloudServiceNodeProps = pack(''type'', + ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n + | project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\n + let NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n + | summarize arg_max(Priority, *) by ComputerId;\r\n summary\r\n | join (InsightsMetrics \r\n + | where TimeGenerated between (startDateTime .. endDateTime) \r\n | where + Origin == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'') \r\n + | extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId) \r\n + | where ComputerId in (computerList) \r\n | summarize Max = max(Val) by + bin(TimeGenerated, trendBinSize), ComputerId \r\n | sort by TimeGenerated + asc) on ComputerId","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max CPU Utilization + % and trend lines","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"Computer":false,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true,"score":false},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"},{"collapsed":true,"gridPos":{"h":1,"w":24,"x":0,"y":28},"id":30,"panels":[{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"decmbytes"},"overrides":[]},"gridPos":{"h":10,"w":24,"x":0,"y":7},"id":8,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet summary = InsightsMetrics\n| where + TimeGenerated between (startDateTime .. endDateTime)\n| where Origin == ''vm.azm.ms'' + and (Namespace == ''Memory'' and Name == ''AvailableMB'')\n| parse kind=regex + tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' *\n| where + resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), Computer, + _ResourceId)\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, Computer\n| + top 10 by score;\nlet computerList=(summary\n| project ComputerId, Computer);\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \nlet OmsNodeIdentityAndProps + = computerList \n| extend NodeId = ComputerId \n| extend Priority + = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', ''name'', + Computer); \nlet ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n|where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;\nsummary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| summarize $agg by bin(TimeGenerated, trendBinSize), + ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"/subscriptions/$sub","resultFormat":"table","workspace":""},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Available Memory","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P5th":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}??/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/??${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}??/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Min"},"properties":[{"id":"custom.width","value":94}]},{"matcher":{"id":"byName","options":"P5th"},"properties":[{"id":"custom.width","value":101}]},{"matcher":{"id":"byName","options":"P10th"},"properties":[{"id":"custom.width","value":95}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":17},"id":32,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet maxResultCount + = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| where TimeGenerated + between (startDateTime .. endDateTime)\r\n| where Origin == ''vm.azm.ms'' + and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| parse kind=regex + tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' *\r\n| where + resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), Computer, + _ResourceId)\r\n| summarize hint.shufflekey = ComputerId Average = round(avg(Val), + 2), Min = min(Val), percentiles(Val, 5, 10, 50, 80, 90, 95) by ComputerId, + Computer, _ResourceId\r\n| project ComputerId, Computer, Average, Min, P5th + = percentile_Val_5, P10th = percentile_Val_10, P50th = percentile_Val_50, + P80th = percentile_Val_80,\r\nP90th = percentile_Val_90, P95th = percentile_Val_95, + ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet computerList = + summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet EmptyNodeIdentityAndProps + = datatable(ComputerId: string, Computer:string, NodeId:string, NodeProps:dynamic, + Priority: long) []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| + extend NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend + NodeProps = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet + ServiceMapNodeIdentityAndProps = VMComputer \r\n| where TimeGenerated + \u003e= startDateTime \r\n| where TimeGenerated \u003c endDateTime \r\n| + extend ResourceId = strcat(''machines/'', Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), + Computer, _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| project ComputerId, Computer;\r\nsummaryPerComputer\r\n| + join ( trend ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| + parse tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName + \"/virtualmachines/\" vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" + vmName\r\n| parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup + \"/providers/microsoft.compute/\" typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) + with * \"microsoft.compute/\" typeScale \"/\" nameScale \"/virtualmachines\" + remaining\r\n| project resourceGroup, Min, Average, P5th, P10th, P50th, Computer, + Type = iff(isnotempty(typeScale), typeScale, typeVM), Name = iff(isnotempty(nameScale), + nameScale, nameVM)\r\n\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Memory Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"NodeId":true,"NodeProps":true,"ResourceId":true,"UseRelativeScale":true,"list_TrendPoint":true},"indexByName":{"Average":6,"Computer":0,"Min":2,"Name":8,"P10th":4,"P50th":5,"P5th":3,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","Type":"","list_TrendPoint":"P5th Trend","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":17},"id":44,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["min"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet summary = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize hint.shufflekey=ComputerId Average = + avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th = round(percentile(Val, + 10), 2), \r\nP50th = round(percentile(Val, 50), 2), P80th = round(percentile(Val, + 80), 2),\r\nP90th = round(percentile(Val, 90), 2), P95th = round(percentile(Val, + 95), 2) by ComputerId, Computer\r\n| top 10 by ${agg:text};\r\nlet computerList=(summary\r\n| + project ComputerId, Computer);\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n|where + TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nsummary\r\n| join (InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Min = min(Val) by bin(TimeGenerated, + trendBinSize), ComputerId\r\n| sort by TimeGenerated asc) on ComputerId\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A"}],"title":"Min Available Memory and Trend Line","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"title":"Available + Memory","type":"row"},{"collapsed":true,"gridPos":{"h":1,"w":24,"x":0,"y":29},"id":22,"panels":[{"datasource":{"uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"Bps"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":8},"id":12,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet MaxListSize = 1000;\nlet summary + = InsightsMetrics\n| where TimeGenerated between (startDateTime .. endDateTime)\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| summarize Val = sum(Val) by bin(TimeGenerated, trendBinSize), + ComputerId, Computer\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, + Computer\n| top 10 by score;\nlet computerList=(summary\n| project ComputerId, + Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: string, + Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) []; \nlet + OmsNodeIdentityAndProps = computerList \n| extend NodeId = ComputerId \n| + extend Priority = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); let ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n| where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;summary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\n| summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"/subscriptions/$sub","resultFormat":"table","workspace":""},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Bytes Sent Rate","transformations":[{"id":"organize","options":{"excludeByName":{"Computer":false,"ComputerId":true,"ComputerId1":true,"P5th":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":97}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":108}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":114}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":104}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":106}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":19},"id":34,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + summarize Val = sum(Val) by bin(TimeGenerated, 1m), ComputerId, Computer, + _ResourceId\r\n| summarize hint.shufflekey = ComputerId Average = avg(Val), + Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by ComputerId, Computer, + _ResourceId\r\n| project ComputerId, Computer, Average, Max, P5th = percentile_Val_5, + P10th = percentile_Val_10, P50th = percentile_Val_50, P90th = percentile_Val_90, + P95th = percentile_Val_95, ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet + computerList = summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + 1m), ComputerId, Computer, _ResourceId\r\n| summarize hint.shufflekey = ComputerId + TrendValue = percentile(Val, 95) by ComputerId, Computer, bin(TimeGenerated, + trendBinSize)\r\n| project ComputerId, Computer\r\n| summarize hint.shufflekey + = ComputerId by ComputerId, Computer;\r\nsummaryPerComputer\r\n| join ( trend + ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| parse + tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName \"/virtualmachines/\" + vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" vmName\r\n| + parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup \"/providers/microsoft.compute/\" + typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) with * \"microsoft.compute/\" + typeScale \"/\" nameScale \"/virtualmachines\" remaining\r\n| project resourceGroup, + Average, P50th, P90th, P95th, Max, Computer, Type = iff(isnotempty(typeScale), + typeScale, typeVM), Name = iff(isnotempty(nameScale), nameScale, nameVM)\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Bytes Sent Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"NodeId":true,"NodeProps":true,"ResourceId":true,"UseRelativeScale":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","list_TrendPoint":"Trend 95th","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":19},"id":48,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet MaxListSize = 1000;\r\nlet summary + = InsightsMetrics\r\n| where TimeGenerated between (startDateTime .. endDateTime)\r\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\r\n| summarize hint.shufflekey=ComputerId + Average = avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th + = round(percentile(Val, 10), 2), \r\nP50th = round(percentile(Val, 50), 2), + P80th = round(percentile(Val, 80), 2),\r\nP90th = round(percentile(Val, 90), + 2), P95th = round(percentile(Val, 95), 2) by ComputerId, Computer\r\n| top + 10 by ${agg:text};\r\nlet computerList=(summary\r\n| project ComputerId, Computer);\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); let ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;summary\r\n| join (InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\r\n| summarize Max = max(Val) by bin(TimeGenerated, + trendBinSize), ComputerId\r\n| sort by TimeGenerated asc) on ComputerId\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max Available Bytes + Sent and Trend Line","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"title":"Network + Bytes Sent","type":"row"},{"collapsed":true,"gridPos":{"h":1,"w":24,"x":0,"y":30},"id":36,"panels":[{"datasource":{"uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"Bps"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":9},"id":16,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet MaxListSize = 1000;\nlet summary + = InsightsMetrics\n| where TimeGenerated between (startDateTime .. endDateTime)\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| summarize Val = sum(Val) by bin(TimeGenerated, trendBinSize), + ComputerId, Computer\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, + Computer\n| top 10 by score;\nlet computerList=(summary\n| project ComputerId, + Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: string, + Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) []; let + OmsNodeIdentityAndProps = computerList \n| extend NodeId = ComputerId \n| + extend Priority = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \nlet ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n| where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;\nsummary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, \nComputer\n| summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"/subscriptions/$sub","resultFormat":"table","workspace":""},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Bytes Received Rate","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":103}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":95}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":105}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":102}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":107}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":20},"id":38,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime) \r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + summarize Val = sum(Val) by bin(TimeGenerated, 1m), ComputerId, Computer, + _ResourceId\r\n| summarize hint.shufflekey = ComputerId Average = avg(Val), + Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by ComputerId, Computer, + _ResourceId\r\n| project ComputerId, Computer, Average, Max, P5th = percentile_Val_5, + P10th = percentile_Val_10, P50th = percentile_Val_50, P90th = percentile_Val_90, + P95th = percentile_Val_95, ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet + computerList = summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + 1m), ComputerId, Computer, _ResourceId\r\n| summarize hint.shufflekey = ComputerId + TrendValue = percentile(Val, 95) by ComputerId, Computer, bin(TimeGenerated, + trendBinSize)\r\n| project ComputerId, Computer\r\n| summarize hint.shufflekey + = ComputerId by ComputerId, Computer;summaryPerComputer\r\n| join ( trend + ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| parse + tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName \"/virtualmachines/\" + vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" vmName\r\n| + parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup \"/providers/microsoft.compute/\" + typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) with * \"microsoft.compute/\" + typeScale \"/\" nameScale \"/virtualmachines\" remaining\r\n| project resourceGroup, + Average, P50th, P90th, P95th, Max, Computer, Type = iff(isnotempty(typeScale), + typeScale, typeVM), Name = iff(isnotempty(nameScale), nameScale, nameVM)","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Bytes Received Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"NodeId":true,"NodeProps":true,"ResourceId":true,"UseRelativeScale":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","list_TrendPoint":"Trend 95th","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":20},"id":50,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet MaxListSize = 1000;\r\nlet summary + = InsightsMetrics\r\n| where TimeGenerated between (startDateTime .. endDateTime)\r\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\r\n| summarize hint.shufflekey=ComputerId + Average = avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th + = round(percentile(Val, 10), 2), \r\nP50th = round(percentile(Val, 50), 2), + P80th = round(percentile(Val, 80), 2),\r\nP90th = round(percentile(Val, 90), + 2), P95th = round(percentile(Val, 95), 2) by ComputerId, Computer\r\n| top + 10 by ${agg:text};\r\nlet computerList=(summary\r\n| project ComputerId, Computer);\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; let OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nsummary\r\n| join (InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, \r\nComputer\r\n| summarize Max = max(Val) by bin(TimeGenerated, + trendBinSize), ComputerId\r\n| sort by TimeGenerated asc) on ComputerId\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max Available Bytes + Recieved and Trend Line","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"title":"Network + Bytes Received","type":"row"},{"collapsed":true,"gridPos":{"h":1,"w":24,"x":0,"y":31},"id":40,"panels":[{"datasource":{"uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"-","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":12,"w":24,"x":0,"y":10},"id":20,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet MaxListSize = 1000;\nlet summary + = InsightsMetrics\n| where TimeGenerated between (startDateTime .. endDateTime)\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == + ''FreeSpaceMB'')\n| parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' + resGroup ''/p(.+)'' *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| extend Tags = todynamic(Tags)\n| extend Total = + todouble(Tags[''vm.azm.ms/diskSizeMB''])\n| summarize Val = sum(Val), Total + = sum(Total) by bin(TimeGenerated, trendBinSize), ComputerId, Computer, _ResourceId\n| + extend Val = (100.0 - (Val * 100.0)/Total)\n| summarize hint.shufflekey=ComputerId + $agg by ComputerId, Computer\n| top 10 by score;\nlet computerList=(summary\n| + project ComputerId, Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \nlet OmsNodeIdentityAndProps = computerList \n| extend + NodeId = ComputerId \n| extend Priority = 1 \n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \nlet ServiceMapNodeIdentityAndProps + = VMComputer \n| where TimeGenerated \u003e= startDateTime \n| + where TimeGenerated \u003c endDateTime \n| extend ResourceId = strcat(''machines/'', + Machine) \n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;\nsummary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| extend Tags = todynamic(Tags)\n| extend Total + = todouble(Tags[''vm.azm.ms/diskSizeMB''])\n| summarize Val = sum(Val), Total + = sum(Total) by bin(TimeGenerated, trendBinSize), ComputerId, Computer, _ResourceId\n| + extend Val = (100.0 - (Val * 100.0)/Total)\n| summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"/subscriptions/$sub","resultFormat":"table","workspace":""},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Logical Disk Space Used %","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":97}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":84}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":105}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":110}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":97}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":22},"id":42,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + extend Tags = todynamic(Tags)\r\n| extend Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), + MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| extend Val = (100.0 - + (Val * 100.0)/Total)\r\n| summarize hint.shufflekey = ComputerId Average = + avg(Val), Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by MountId, + ComputerId, Computer, _ResourceId\r\n| project MountId, ComputerId, Computer, + Average, Max, P5th = percentile_Val_5, P10th = percentile_Val_10, P50th = + percentile_Val_50, P90th = percentile_Val_90, P95th = percentile_Val_95, ResourceId + = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet computerList = summaryPerComputer\r\n| + summarize by ComputerId, Computer;\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n| + where TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)| extend Tags = todynamic(Tags)\r\n| extend + Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| + extend Val = (100.0 - (Val * 100.0)/Total)\r\n| summarize hint.shufflekey + = ComputerId TrendValue = percentile(Val, 95) by MountId, ComputerId, Computer, + bin(TimeGenerated, trendBinSize)\r\n| project MountId, ComputerId, Computer\r\n| + summarize hint.shufflekey = ComputerId by MountId, ComputerId, Computer;summaryPerComputer\r\n| + join kind=leftouter ( trend ) on ComputerId, MountId\r\n| join kind=leftouter + ( NodeIdentityAndProps ) on ComputerId\r\n| extend VolumeId = strcat(MountId, + ''|'', NodeId), VolumeProps = pack(''type'', ''NodeVolume'', ''volumeName'', + MountId, ''node'', NodeProps)\r\n| parse tolower(ResourceId) with * \"virtualmachinescalesets/\" + scaleSetName \"/virtualmachines/\" vmNameScale\r\n| parse tolower(ResourceId) + with * \"virtualmachines/\" vmName\r\n| parse tolower(ResourceId) with * \"resourcegroups/\" + resourceGroup \"/providers/microsoft.compute/\" typeVM \"/\" nameVM\r\n| parse + tolower(ResourceId) with * \"microsoft.compute/\" typeScale \"/\" nameScale + \"/virtualmachines\" remaining\r\n| project resourceGroup, Average, P50th, + P90th, P95th, Max, Computer, Type = iff(isnotempty(typeScale), typeScale, + typeVM), Name = iff(isnotempty(nameScale), nameScale, nameVM)\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Logical Space Disk Used % Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"ResourceId":true,"UseRelativeScale":true,"VolumeId":true,"VolumeProps":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","list_TrendPoint":"Trend 95th","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"description":"The + resource path for this panel uses multiple template variables which requires + modifying the dashboard JSON directly. If you would like to do something similar + please go to Settings \u003e Save As. Edit as you''d like in your new copy + by going to Settings \u003e JSON Model.","fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":22},"id":52,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + extend Tags = todynamic(Tags)\r\n| extend Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), + MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| extend Val = (100.0 - + (Val * 100.0)/Total)\r\n| summarize hint.shufflekey = ComputerId Average = + avg(Val), Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by MountId, + ComputerId, Computer, _ResourceId\r\n| project MountId, ComputerId, Computer, + Average, Max, P5th = percentile_Val_5, P10th = percentile_Val_10, P50th = + percentile_Val_50, P90th = percentile_Val_90, P95th = percentile_Val_95, ResourceId + = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet computerList = summaryPerComputer\r\n| + summarize by ComputerId, Computer;\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n| + where TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nInsightsMetrics\r\n| where + TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin == + ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)| extend Tags = todynamic(Tags)\r\n| extend + Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| + extend Val = (100.0 - (Val * 100.0)/Total)\r\n| summarize hint.shufflekey + = ComputerId TrendValue = max(Val) by MountId, ComputerId, Computer, bin(TimeGenerated, + trendBinSize)\r\n","resource":"/subscriptions/$sub","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max vailable Logical + Space Disk Used % ","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"MountId":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"title":"Logical + Disk Space Used %","type":"row"}],"refresh":"","schemaVersion":35,"style":"dark","tags":[],"templating":{"list":[{"current":{},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"Subscriptions()","hide":0,"includeAll":false,"label":"Subscription","multi":false,"name":"sub","options":[],"query":"Subscriptions()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"ResourceGroups($sub)","hide":0,"includeAll":false,"label":"Resource + Group(s)","multi":true,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{"selected":true,"text":"Average","value":"score + = round(avg(Val), 2)"},"hide":0,"includeAll":false,"label":"Aggregate","multi":false,"name":"agg","options":[{"selected":true,"text":"Average","value":"score + = round(avg(Val), 2)"},{"selected":false,"text":"P5th","value":"score= round(percentile(Val, + 5), 2)"},{"selected":false,"text":"P10th","value":"score= round(percentile(Val, + 10), 2)"},{"selected":false,"text":"P50th","value":"score= round(percentile(Val, + 50), 2)"},{"selected":false,"text":"P80th","value":"score= round(percentile(Val, + 80), 2)"},{"selected":false,"text":"P90th","value":"score= round(percentile(Val, + 90), 2)"},{"selected":false,"text":"P95th","value":"score= round(percentile(Val, + 95), 2)"}],"query":"Average : score = round(avg(Val)\\, 2), P5th : score= + round(percentile(Val\\, 5)\\, 2), P10th : score= round(percentile(Val\\, + 10)\\, 2), P50th : score= round(percentile(Val\\, 50)\\, 2), P80th : score= + round(percentile(Val\\, 80)\\, 2), P90th : score= round(percentile(Val\\, + 90)\\, 2), P95th : score= round(percentile(Val\\, 95)\\, 2)","queryValue":"","skipUrlSync":false,"type":"custom"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":2,"includeAll":false,"multi":false,"name":"tenantId","options":[],"query":{"azureLogAnalytics":{"query":"InsightsMetrics\r\n| + project TenantId","resource":"/subscriptions/$sub"},"queryType":"Azure Log + Analytics","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-15m","to":"now"},"title":"Azure + / Insights / Virtual Machines by Resource Group","uid":"AzVmInsightsByRG","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3hsoI/m122OUtO9gFBZMug';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574415.042.441.164861|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByWS + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsWs.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time + series","type":"panel","version":""}],"description":"This dashboard shows + the performance and health of Azure Virtual Machines via different metrics + collected by Azure Monitor VM Insights. Filter data by Workspace","editable":true,"id":8,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv + style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003eWelcome + to the Azure Monitor data source for Grafana. To learn more about it, visit + our \u003ca href=\"https://grafana.com/docs/grafana/latest/datasources/azuremonitor/\" + target=\"__blank\"\u003edocs\u003c/a\u003e. \u003c/p\u003e\n \u003cp\u003e Choose + the resource group(s) with VMs enabled with Azure Monitor VM Insights and + related Workspace to get started.\u003c/p\u003e\n\u003c/div\u003e","mode":"markdown"},"title":"How + to activate this dashboard","type":"text"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":5},"id":28,"panels":[],"title":"CPU + Utilization %","type":"row"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMax":100,"axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":10,"w":24,"x":0,"y":6},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet summary = InsightsMetrics\n| where + TimeGenerated between (startDateTime .. endDateTime)\n| where Origin == ''vm.azm.ms'' + and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'')\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, + Computer| top 10 by score;\nlet computerList=(summary\n| project ComputerId, + Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: string, + Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) []; \nlet + OmsNodeIdentityAndProps = computerList \n| extend NodeId = ComputerId \n| + extend Priority = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \nlet ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n| where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachine`alesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n + | extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n | where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n | extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n | summarize arg_max(TimeGenerated, + *) by Machine \n | extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity = iif(isnotempty(AzureVmScaleSetName), + strcat(AzureVmScaleSetInstanceId, ''|'', AzureVmScaleSetDeployment), ''''), + ComputerProps = pack(''type'', ''StandAloneNode'', ''name'', + DisplayName, ''mappingResourceId'', ResourceId, ''subscriptionId'', + AzureSubscriptionId, ''resourceGroup'', AzureResourceGroup, ''azureResourceId'', + _ResourceId), AzureCloudServiceNodeProps = pack(''type'', + ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n + | project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \n + let NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n + | summarize arg_max(Priority, *) by ComputerId;\n summary\n | join (InsightsMetrics \n + | where TimeGenerated between (startDateTime .. endDateTime) \n | where + Origin == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'') \n + | extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId) \n + | where ComputerId in (computerList) \n | summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId \n | sort by TimeGenerated asc) on ComputerId","resource":"$ws","resultFormat":"table","workspace":""},"hide":false,"queryType":"Azure + Log Analytics","refId":"A","subscription":"$sub","subscriptions":[]}],"title":"${agg:text} + CPU Utilization %","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P5th":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/?${sub}?/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/?${__data.fields.Type}?/${__data.fields[\"Resource + Name\"]}/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":76}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":77}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":75}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":72}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":78}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":16},"id":26,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"frameIndex":1,"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"\r\nlet + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet summaryPerComputer = InsightsMetrics\r\n| where TimeGenerated + between (startDateTime .. endDateTime)\r\n| where Origin == ''vm.azm.ms'' + and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'') \r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resourceGroup + ''/p(.+)'' *\t\r\n| where resourceGroup in~ ($rg) \r\n| extend ComputerId + = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| summarize hint.shufflekey + = ComputerId Average = round(avg(Val), 2), Max = max(Val), percentiles(Val, + 5, 10, 50, 80, 90, 95) by ComputerId, Computer, _ResourceId\r\n| project ComputerId, + Computer, Average, Max, P5th = percentile_Val_5, P10th = percentile_Val_10, + P50th = percentile_Val_50, P80th = percentile_Val_80, P90th = percentile_Val_90, + P95th = percentile_Val_95, ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet + computerList = summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity = iif(isnotempty(AzureCloudServiceName), + strcat(AzureCloudServiceInstanceId, ''|'', AzureCloudServiceDeployment), ''''), + AzureScaleSetNodeIdentity = iif(isnotempty\r\n(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', ''StandAloneNode'', + ''name'', DisplayName, ''mappingResourceId'', \r\nResourceId, ''subscriptionId'', + AzureSubscriptionId, ''resourceGroup'', AzureResourceGroup, ''azureResourceId'', + _ResourceId), AzureCloudServiceNodeProps = pack(''type'', ''AzureCloudServiceNode'',\r\n''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', AzureCloudServiceRoleName, + ''cloudServiceDeploymentId'', AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName,''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', ''AzureScaleSetNode'', + ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', \r\nAzureVmScaleSetDeployment, + ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', AzureServiceFabricClusterName, + ''vmScaleSetResourceId'', AzureVmScaleSetResourceId, ''resourceGroupName'', + \r\nAzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| project ComputerId, + Computer, NodeId = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, + isnotempty(AzureScaleSetNodeIdentity), AzureScaleSetNodeIdentity,\r\nComputer), + NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeProps, + isnotempty(AzureScaleSetNodeIdentity), AzureScaleSetNodeProps, ComputerProps), + Priority = 2;\r\nlet NodeIdentityAndProps = union kind=inner isfuzzy = true + EmptyNodeIdentityAndProps, OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps\r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| project ComputerId, Computer\r\n| + summarize hint.shufflekey = ComputerId by ComputerId, Computer;\r\nsummaryPerComputer\r\n| + join ( trend ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| + parse tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName + \"/virtualmachines/\" vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" + vmName\r\n| parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup + \"/providers/microsoft.compute/\" typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) + with * \"microsoft.compute/\" typeScale \"/\" nameScale \"/virtualmachines\" + remaining\r\n| project resourceGroup, Average, P50th, P90th, P95th, Max, Computer, + Type = iff(isnotempty(typeScale), typeScale, typeVM), Name = iff(isnotempty(nameScale), + nameScale, nameVM)","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"CPU + Utilization % Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"Max":false,"NodeId":false,"NodeProps":false,"P50th":false,"ResourceId":false,"name + 2":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Column1":"Computer","Name":"Resource + Name","ResourceId":"Resource ID","UseRelativeScale":"","list_TrendPoint":"95th + Trend","resGroup":"Resource Group","resourceGroup":"Resource Group","tenantId":"Tenant + ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":16},"id":46,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet summary = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize hint.shufflekey=ComputerId Average = + avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th = round(percentile(Val, + 10), 2), \r\nP50th = round(percentile(Val, 50), 2), P80th = round(percentile(Val, + 80), 2),\r\nP90th = round(percentile(Val, 90), 2), P95th = round(percentile(Val, + 95), 2) by ComputerId, Computer\r\n| top 10 by ${agg:text};\r\nlet computerList=(summary\r\n| + project ComputerId, Computer);\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n| + where TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachine`alesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n + | extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n | where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n | extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n | summarize + arg_max(TimeGenerated, *) by Machine \r\n | extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity = iif(isnotempty(AzureVmScaleSetName), + strcat(AzureVmScaleSetInstanceId, ''|'', AzureVmScaleSetDeployment), ''''), + ComputerProps = pack(''type'', ''StandAloneNode'', ''name'', + DisplayName, ''mappingResourceId'', ResourceId, ''subscriptionId'', + AzureSubscriptionId, ''resourceGroup'', AzureResourceGroup, ''azureResourceId'', + _ResourceId), AzureCloudServiceNodeProps = pack(''type'', + ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n + | project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\n + let NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n + | summarize arg_max(Priority, *) by ComputerId;\r\n summary\r\n | join (InsightsMetrics \r\n + | where TimeGenerated between (startDateTime .. endDateTime) \r\n | where + Origin == ''vm.azm.ms'' and (Namespace == ''Processor'' and Name == ''UtilizationPercentage'') \r\n + | extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId) \r\n + | where ComputerId in (computerList) \r\n | summarize Max = max(Val) by + bin(TimeGenerated, trendBinSize), ComputerId \r\n | sort by TimeGenerated + asc) on ComputerId","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max CPU Utilization + % and trend lines","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"Computer":false,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true,"score":false},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"},{"collapsed":true,"gridPos":{"h":1,"w":24,"x":0,"y":28},"id":30,"panels":[{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]},"unit":"decmbytes"},"overrides":[]},"gridPos":{"h":10,"w":24,"x":0,"y":7},"id":8,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet summary = InsightsMetrics\n| where + TimeGenerated between (startDateTime .. endDateTime)\n| where Origin == ''vm.azm.ms'' + and (Namespace == ''Memory'' and Name == ''AvailableMB'')\n| parse kind=regex + tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' *\n| where + resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), Computer, + _ResourceId)\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, Computer\n| + top 10 by score;\nlet computerList=(summary\n| project ComputerId, Computer);\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \nlet OmsNodeIdentityAndProps + = computerList \n| extend NodeId = ComputerId \n| extend Priority + = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', ''name'', + Computer); \nlet ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n|where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;\nsummary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| summarize $agg by bin(TimeGenerated, trendBinSize), + ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"$ws","resultFormat":"table","workspace":""},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Available Memory","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P5th":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Min"},"properties":[{"id":"custom.width","value":81}]},{"matcher":{"id":"byName","options":"P5th"},"properties":[{"id":"custom.width","value":99}]},{"matcher":{"id":"byName","options":"P10th"},"properties":[{"id":"custom.width","value":77}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":91}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":78}]},{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}?/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/?${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}?/infrainsights"}]}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":17},"id":32,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet maxResultCount + = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| where TimeGenerated + between (startDateTime .. endDateTime)\r\n| where Origin == ''vm.azm.ms'' + and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| parse kind=regex + tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' *\r\n| where + resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), Computer, + _ResourceId)\r\n| summarize hint.shufflekey = ComputerId Average = round(avg(Val), + 2), Min = min(Val), percentiles(Val, 5, 10, 50, 80, 90, 95) by ComputerId, + Computer, _ResourceId\r\n| project ComputerId, Computer, Average, Min, P5th + = percentile_Val_5, P10th = percentile_Val_10, P50th = percentile_Val_50, + P80th = percentile_Val_80,\r\nP90th = percentile_Val_90, P95th = percentile_Val_95, + ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet computerList = + summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet EmptyNodeIdentityAndProps + = datatable(ComputerId: string, Computer:string, NodeId:string, NodeProps:dynamic, + Priority: long) []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| + extend NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend + NodeProps = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet + ServiceMapNodeIdentityAndProps = VMComputer \r\n| where TimeGenerated + \u003e= startDateTime \r\n| where TimeGenerated \u003c endDateTime \r\n| + extend ResourceId = strcat(''machines/'', Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), + Computer, _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| project ComputerId, Computer;\r\nsummaryPerComputer\r\n| + join ( trend ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| + parse tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName + \"/virtualmachines/\" vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" + vmName\r\n| parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup + \"/providers/microsoft.compute/\" typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) + with * \"microsoft.compute/\" typeScale \"/\" nameScale \"/virtualmachines\" + remaining\r\n| project resourceGroup, Min, Average, P5th, P10th, P50th, Computer, + Type = iff(isnotempty(typeScale), typeScale, typeVM), Name = iff(isnotempty(nameScale), + nameScale, nameVM)\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Memory Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"NodeId":true,"NodeProps":true,"ResourceId":true,"UseRelativeScale":true,"list_TrendPoint":true},"indexByName":{"Average":6,"Computer":0,"Min":2,"Name":8,"P10th":4,"P50th":5,"P5th":3,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","list_TrendPoint":"P5th Trend","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":17},"id":44,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["min"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet summary = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize hint.shufflekey=ComputerId Average = + avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th = round(percentile(Val, + 10), 2), \r\nP50th = round(percentile(Val, 50), 2), P80th = round(percentile(Val, + 80), 2),\r\nP90th = round(percentile(Val, 90), 2), P95th = round(percentile(Val, + 95), 2) by ComputerId, Computer\r\n| top 10 by ${agg:text};\r\nlet computerList=(summary\r\n| + project ComputerId, Computer);\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n|where + TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nsummary\r\n| join (InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Memory'' and Name == ''AvailableMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Min = min(Val) by bin(TimeGenerated, + trendBinSize), ComputerId\r\n| sort by TimeGenerated asc) on ComputerId\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A"}],"title":"Min Available Memory and Trend Line","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"title":"Available + Memory","type":"row"},{"collapsed":true,"gridPos":{"h":1,"w":24,"x":0,"y":29},"id":22,"panels":[{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]},"unit":"Bps"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":8},"id":12,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet MaxListSize = 1000;\nlet summary + = InsightsMetrics\n| where TimeGenerated between (startDateTime .. endDateTime)\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| summarize Val = sum(Val) by bin(TimeGenerated, trendBinSize), + ComputerId, Computer\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, + Computer\n| top 10 by score;\nlet computerList=(summary\n| project ComputerId, + Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: string, + Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) []; \nlet + OmsNodeIdentityAndProps = computerList \n| extend NodeId = ComputerId \n| + extend Priority = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); let ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n| where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;summary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\n| summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"$ws","resultFormat":"table","workspace":""},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Bytes Sent Rate","transformations":[{"id":"organize","options":{"excludeByName":{"Computer":false,"ComputerId":true,"ComputerId1":true,"P5th":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":94}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":86}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":101}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":97}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":131}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":19},"id":34,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + summarize Val = sum(Val) by bin(TimeGenerated, 1m), ComputerId, Computer, + _ResourceId\r\n| summarize hint.shufflekey = ComputerId Average = avg(Val), + Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by ComputerId, Computer, + _ResourceId\r\n| project ComputerId, Computer, Average, Max, P5th = percentile_Val_5, + P10th = percentile_Val_10, P50th = percentile_Val_50, P90th = percentile_Val_90, + P95th = percentile_Val_95, ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet + computerList = summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + 1m), ComputerId, Computer, _ResourceId\r\n| summarize hint.shufflekey = ComputerId + TrendValue = percentile(Val, 95) by ComputerId, Computer, bin(TimeGenerated, + trendBinSize)\r\n| project ComputerId, Computer\r\n| summarize hint.shufflekey + = ComputerId by ComputerId, Computer;\r\nsummaryPerComputer\r\n| join ( trend + ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| parse + tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName \"/virtualmachines/\" + vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" vmName\r\n| + parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup \"/providers/microsoft.compute/\" + typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) with * \"microsoft.compute/\" + typeScale \"/\" nameScale \"/virtualmachines\" remaining\r\n| project resourceGroup, + Average, P50th, P90th, P95th, Max, Computer, Type = iff(isnotempty(typeScale), + typeScale, typeVM), Name = iff(isnotempty(nameScale), nameScale, nameVM)\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Bytes Sent Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"NodeId":true,"NodeProps":true,"ResourceId":true,"UseRelativeScale":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","list_TrendPoint":"Trend 95th","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":19},"id":48,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet MaxListSize = 1000;\r\nlet summary + = InsightsMetrics\r\n| where TimeGenerated between (startDateTime .. endDateTime)\r\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\r\n| summarize hint.shufflekey=ComputerId + Average = avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th + = round(percentile(Val, 10), 2), \r\nP50th = round(percentile(Val, 50), 2), + P80th = round(percentile(Val, 80), 2),\r\nP90th = round(percentile(Val, 90), + 2), P95th = round(percentile(Val, 95), 2) by ComputerId, Computer\r\n| top + 10 by ${agg:text};\r\nlet computerList=(summary\r\n| project ComputerId, Computer);\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); let ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;summary\r\n| join (InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''WriteBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\r\n| summarize Max = max(Val) by bin(TimeGenerated, + trendBinSize), ComputerId\r\n| sort by TimeGenerated asc) on ComputerId\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max Available Bytes + Sent and Trend Line","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"title":"Network + Bytes Sent","type":"row"},{"collapsed":true,"gridPos":{"h":1,"w":24,"x":0,"y":30},"id":36,"panels":[{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]},"unit":"Bps"},"overrides":[]},"gridPos":{"h":11,"w":24,"x":0,"y":9},"id":16,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet MaxListSize = 1000;\nlet summary + = InsightsMetrics\n| where TimeGenerated between (startDateTime .. endDateTime)\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| summarize Val = sum(Val) by bin(TimeGenerated, trendBinSize), + ComputerId, Computer\n| summarize hint.shufflekey=ComputerId $agg by ComputerId, + Computer\n| top 10 by score;\nlet computerList=(summary\n| project ComputerId, + Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: string, + Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) []; let + OmsNodeIdentityAndProps = computerList \n| extend NodeId = ComputerId \n| + extend Priority = 1 \n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \nlet ServiceMapNodeIdentityAndProps = VMComputer \n| + where TimeGenerated \u003e= startDateTime \n| where TimeGenerated \u003c + endDateTime \n| extend ResourceId = strcat(''machines/'', Machine) \n| + extend tempComputerId=iff(isempty(_ResourceId), Computer, _ResourceId) \n| + extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;\nsummary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, \nComputer\n| summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"$ws","resultFormat":"table","workspace":""},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Bytes Received Rate","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}/infrainsights"}]}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":97}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":82}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":99}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":89}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":93}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":20},"id":38,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime) \r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + summarize Val = sum(Val) by bin(TimeGenerated, 1m), ComputerId, Computer, + _ResourceId\r\n| summarize hint.shufflekey = ComputerId Average = avg(Val), + Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by ComputerId, Computer, + _ResourceId\r\n| project ComputerId, Computer, Average, Max, P5th = percentile_Val_5, + P10th = percentile_Val_10, P50th = percentile_Val_50, P90th = percentile_Val_90, + P95th = percentile_Val_95, ResourceId = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet + computerList = summaryPerComputer\r\n| summarize by ComputerId, Computer;\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; \r\nlet OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + 1m), ComputerId, Computer, _ResourceId\r\n| summarize hint.shufflekey = ComputerId + TrendValue = percentile(Val, 95) by ComputerId, Computer, bin(TimeGenerated, + trendBinSize)\r\n| project ComputerId, Computer\r\n| summarize hint.shufflekey + = ComputerId by ComputerId, Computer;summaryPerComputer\r\n| join ( trend + ) on ComputerId\r\n| join ( NodeIdentityAndProps ) on ComputerId\r\n| parse + tolower(ResourceId) with * \"virtualmachinescalesets/\" scaleSetName \"/virtualmachines/\" + vmNameScale\r\n| parse tolower(ResourceId) with * \"virtualmachines/\" vmName\r\n| + parse tolower(ResourceId) with * \"resourcegroups/\" resourceGroup \"/providers/microsoft.compute/\" + typeVM \"/\" nameVM\r\n| parse tolower(ResourceId) with * \"microsoft.compute/\" + typeScale \"/\" nameScale \"/virtualmachines\" remaining\r\n| project resourceGroup, + Average, P50th, P90th, P95th, Max, Computer, Type = iff(isnotempty(typeScale), + typeScale, typeVM), Name = iff(isnotempty(nameScale), nameScale, nameVM)\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Bytes Received Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"NodeId":true,"NodeProps":true,"ResourceId":true,"UseRelativeScale":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","list_TrendPoint":"Trend 95th","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green"},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":20},"id":50,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = (endDateTime - startDateTime)/100;\r\nlet MaxListSize = 1000;\r\nlet summary + = InsightsMetrics\r\n| where TimeGenerated between (startDateTime .. endDateTime)\r\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' resGroup ''/p(.+)'' + *\r\n| where resGroup in~ ($rg)\r\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, Computer\r\n| summarize hint.shufflekey=ComputerId + Average = avg(Val), Min = min(Val),P5th = round(percentile(Val, 5), 2), P10th + = round(percentile(Val, 10), 2), \r\nP50th = round(percentile(Val, 50), 2), + P80th = round(percentile(Val, 80), 2),\r\nP90th = round(percentile(Val, 90), + 2), P95th = round(percentile(Val, 95), 2) by ComputerId, Computer\r\n| top + 10 by ${agg:text};\r\nlet computerList=(summary\r\n| project ComputerId, Computer);\r\nlet + EmptyNodeIdentityAndProps = datatable(ComputerId: string, Computer:string, + NodeId:string, NodeProps:dynamic, Priority: long) []; let OmsNodeIdentityAndProps + = computerList \r\n| extend NodeId = ComputerId \r\n| extend + Priority = 1 \r\n| extend NodeProps = pack(''type'', ''StandAloneNode'', + ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps = VMComputer \r\n| + where TimeGenerated \u003e= startDateTime \r\n| where TimeGenerated + \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\r\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; let + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nsummary\r\n| join (InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''Network'' and Name == ''ReadBytesPerSecond'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)\r\n| summarize Val = sum(Val) by bin(TimeGenerated, + trendBinSize), ComputerId, \r\nComputer\r\n| summarize Max = max(Val) by bin(TimeGenerated, + trendBinSize), ComputerId\r\n| sort by TimeGenerated asc) on ComputerId\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max Available Bytes + Recieved and Trend Line","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"title":"Network + Bytes Received","type":"row"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":31},"id":40,"panels":[],"title":"Logical + Disk Space Used %","type":"row"},{"datasource":{"uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisGridShow":true,"axisLabel":"","axisPlacement":"auto","axisSoftMin":0,"barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":true,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"-","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":12,"w":24,"x":0,"y":32},"id":20,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\nlet endDateTime = $__timeTo;\nlet trendBinSize + = (endDateTime - startDateTime)/100;\nlet MaxListSize = 1000;\nlet summary + = InsightsMetrics\n| where TimeGenerated between (startDateTime .. endDateTime)\n| + where Origin == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == + ''FreeSpaceMB'')\n| parse kind=regex tolower(_ResourceId) with ''resourcegroups/'' + resGroup ''/p(.+)'' *\n| where resGroup in~ ($rg)\n| extend ComputerId = iff(isempty(_ResourceId), + Computer, _ResourceId)\n| extend Tags = todynamic(Tags)\n| extend Total = + todouble(Tags[''vm.azm.ms/diskSizeMB''])\n| summarize Val = sum(Val), Total + = sum(Total) by bin(TimeGenerated, trendBinSize), ComputerId, Computer, _ResourceId\n| + extend Val = (100.0 - (Val * 100.0)/Total)\n| summarize hint.shufflekey=ComputerId + $agg by ComputerId, Computer\n| top 10 by score;\nlet computerList=(summary\n| + project ComputerId, Computer);\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \nlet OmsNodeIdentityAndProps = computerList \n| extend + NodeId = ComputerId \n| extend Priority = 1 \n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \nlet ServiceMapNodeIdentityAndProps + = VMComputer \n| where TimeGenerated \u003e= startDateTime \n| + where TimeGenerated \u003c endDateTime \n| extend ResourceId = strcat(''machines/'', + Machine) \n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', + @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', _ResourceId))\n| + extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \n| summarize arg_max(TimeGenerated, + *) by Machine \n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \n| + summarize arg_max(Priority, *) by ComputerId;\nsummary\n| join (InsightsMetrics\n| + where TimeGenerated between (startDateTime .. endDateTime)\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\n| where + ComputerId in (computerList)\n| extend Tags = todynamic(Tags)\n| extend Total + = todouble(Tags[''vm.azm.ms/diskSizeMB''])\n| summarize Val = sum(Val), Total + = sum(Total) by bin(TimeGenerated, trendBinSize), ComputerId, Computer, _ResourceId\n| + extend Val = (100.0 - (Val * 100.0)/Total)\n| summarize $agg by bin(TimeGenerated, + trendBinSize), ComputerId\n| sort by TimeGenerated asc) on ComputerId\n","resource":"$ws","resultFormat":"table","workspace":""},"queryType":"Azure + Log Analytics","refId":"A","subscription":"","subscriptions":[]}],"title":"${agg:text} + Logical Disk Space Used %","transformations":[{"id":"organize","options":{"excludeByName":{"ComputerId":true,"ComputerId1":true,"P95th":true,"score":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"timeseries"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"Computer"},"properties":[{"id":"links","value":[{"targetBlank":true,"title":"","url":"https://ms.portal.azure.com/#@${__data.fields[\"Tenant + ID\"]}/resource/subscriptions/${sub}/resourcegroups/${__data.fields[\"Resource + Group\"]}/providers/microsoft.compute/${__data.fields.Type}/${__data.fields[\"Resource + Name\"]}/infrainsights"}]},{"id":"custom.width","value":193}]},{"matcher":{"id":"byName","options":"Average"},"properties":[{"id":"custom.width","value":89}]},{"matcher":{"id":"byName","options":"P50th"},"properties":[{"id":"custom.width","value":86}]},{"matcher":{"id":"byName","options":"P90th"},"properties":[{"id":"custom.width","value":90}]},{"matcher":{"id":"byName","options":"P95th"},"properties":[{"id":"custom.width","value":87}]},{"matcher":{"id":"byName","options":"Max"},"properties":[{"id":"custom.width","value":77}]}]},"gridPos":{"h":12,"w":14,"x":0,"y":44},"id":42,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true,"sortBy":[]},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + extend Tags = todynamic(Tags)\r\n| extend Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), + MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| extend Val = (100.0 - + (Val * 100.0)/Total)\r\n| summarize hint.shufflekey = ComputerId Average = + avg(Val), Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by MountId, + ComputerId, Computer, _ResourceId\r\n| project MountId, ComputerId, Computer, + Average, Max, P5th = percentile_Val_5, P10th = percentile_Val_10, P50th = + percentile_Val_50, P90th = percentile_Val_90, P95th = percentile_Val_95, ResourceId + = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet computerList = summaryPerComputer\r\n| + summarize by ComputerId, Computer;\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n| + where TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nlet trend = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)| extend Tags = todynamic(Tags)\r\n| extend + Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| + extend Val = (100.0 - (Val * 100.0)/Total)\r\n| summarize hint.shufflekey + = ComputerId TrendValue = percentile(Val, 95) by MountId, ComputerId, Computer, + bin(TimeGenerated, trendBinSize)\r\n| project MountId, ComputerId, Computer\r\n| + summarize hint.shufflekey = ComputerId by MountId, ComputerId, Computer;summaryPerComputer\r\n| + join kind=leftouter ( trend ) on ComputerId, MountId\r\n| join kind=leftouter + ( NodeIdentityAndProps ) on ComputerId\r\n| extend VolumeId = strcat(MountId, + ''|'', NodeId), VolumeProps = pack(''type'', ''NodeVolume'', ''volumeName'', + MountId, ''node'', NodeProps)\r\n| parse tolower(ResourceId) with * \"virtualmachinescalesets/\" + scaleSetName \"/virtualmachines/\" vmNameScale\r\n| parse tolower(ResourceId) + with * \"virtualmachines/\" vmName\r\n| parse tolower(ResourceId) with * \"resourcegroups/\" + resourceGroup \"/providers/microsoft.compute/\" typeVM \"/\" nameVM\r\n| parse + tolower(ResourceId) with * \"microsoft.compute/\" typeScale \"/\" nameScale + \"/virtualmachines\" remaining\r\n| project resourceGroup, Average, P50th, + P90th, P95th, Max, Computer, Type = iff(isnotempty(typeScale), typeScale, + typeVM), Name = iff(isnotempty(nameScale), nameScale, nameVM)\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},{"azureResourceGraph":{"query":"resources\r\n| + where tolower(type) contains \"virtualmachines\" and resourceGroup in~ ($rg) + \r\n| project Name = tolower(name), tenantId, resourceGroup"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"hide":false,"queryType":"Azure + Resource Graph","refId":"B","subscription":"","subscriptions":["$sub"]}],"title":"Available + Logical Space Disk Used % Statistics","transformations":[{"id":"merge","options":{}},{"id":"organize","options":{"excludeByName":{"ResourceId":true,"UseRelativeScale":true,"VolumeId":true,"VolumeProps":true},"indexByName":{"Average":2,"Computer":0,"Max":6,"Name":8,"P50th":3,"P90th":4,"P95th":5,"Type":7,"resourceGroup":1,"tenantId":9},"renameByName":{"Name":"Resource + Name","list_TrendPoint":"Trend 95th","resGroup":"Resource Group","resourceGroup":"Resource + Group","tenantId":"Tenant ID","typeName":"Type/Name"}}},{"id":"filterByValue","options":{"filters":[{"config":{"id":"isNotNull","options":{}},"fieldName":"Computer"}],"match":"all","type":"include"}}],"type":"table"},{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"light-green","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":12,"w":10,"x":14,"y":44},"id":52,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["max"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureLogAnalytics":{"query":"let + startDateTime = $__timeFrom;\r\nlet endDateTime = $__timeTo;\r\nlet trendBinSize + = 5m;\r\nlet maxResultCount = 10;\r\nlet summaryPerComputer = InsightsMetrics\r\n| + where TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin + == ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + extend Tags = todynamic(Tags)\r\n| extend Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), + MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| extend Val = (100.0 - + (Val * 100.0)/Total)\r\n| summarize hint.shufflekey = ComputerId Average = + avg(Val), Max = max(Val), percentiles(Val, 5, 10, 50, 90, 95) by MountId, + ComputerId, Computer, _ResourceId\r\n| project MountId, ComputerId, Computer, + Average, Max, P5th = percentile_Val_5, P10th = percentile_Val_10, P50th = + percentile_Val_50, P90th = percentile_Val_90, P95th = percentile_Val_95, ResourceId + = _ResourceId\r\n| top 10 by ${agg:text};\r\nlet computerList = summaryPerComputer\r\n| + summarize by ComputerId, Computer;\r\nlet EmptyNodeIdentityAndProps = datatable(ComputerId: + string, Computer:string, NodeId:string, NodeProps:dynamic, Priority: long) + []; \r\nlet OmsNodeIdentityAndProps = computerList \r\n| extend + NodeId = ComputerId \r\n| extend Priority = 1 \r\n| extend NodeProps + = pack(''type'', ''StandAloneNode'', ''name'', Computer); \r\nlet ServiceMapNodeIdentityAndProps + = VMComputer \r\n| where TimeGenerated \u003e= startDateTime \r\n| + where TimeGenerated \u003c endDateTime \r\n| extend ResourceId = strcat(''machines/'', + Machine) \r\n| extend tempComputerId=iff(isempty(_ResourceId), Computer, + _ResourceId) \r\n| extend laResourceId = iff(isempty(_ResourceId),'''', replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'', @''virtualmachinescalesets/\\\\1/virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| extend oldLaResourceId=iff(isempty(_ResourceId),'''',replace(@''virtualmachinescalesets/(.+)/virtualmachines/(\\\\d+)'',@''virtualmachines/\\\\1_\\\\2'', + _ResourceId)) \r\n| where tempComputerId in~ (computerList) or laResourceId + in (computerList) or oldLaResourceId in (computerList) \r\n| extend ComputerId + = iff(laResourceId in (computerList), laResourceId, iff(oldLaResourceId in + (computerList), oldLaResourceId, tempComputerId)) \r\n| summarize arg_max(TimeGenerated, + *) by Machine \r\n| extend AzureCloudServiceNodeIdentity + = iif(isnotempty(AzureCloudServiceName), strcat(AzureCloudServiceInstanceId, + ''|'', AzureCloudServiceDeployment), ''''), AzureScaleSetNodeIdentity + = iif(isnotempty(AzureVmScaleSetName), strcat(AzureVmScaleSetInstanceId, + ''|'', AzureVmScaleSetDeployment), ''''), ComputerProps = pack(''type'', + ''StandAloneNode'', ''name'', DisplayName, ''mappingResourceId'', + ResourceId, ''subscriptionId'', AzureSubscriptionId, ''resourceGroup'', + AzureResourceGroup, ''azureResourceId'', _ResourceId), AzureCloudServiceNodeProps + = pack(''type'', ''AzureCloudServiceNode'', ''cloudServiceInstanceId'', + AzureCloudServiceInstanceId, ''cloudServiceRoleName'', + AzureCloudServiceRoleName, ''cloudServiceDeploymentId'', + AzureCloudServiceDeployment, ''fullDisplayName'', + FullDisplayName, ''cloudServiceName'', AzureCloudServiceName, ''mappingResourceId'', + ResourceId), AzureScaleSetNodeProps = pack(''type'', + ''AzureScaleSetNode'', ''scaleSetInstanceId'', AzureResourceName, ''vmScaleSetDeploymentId'', + AzureVmScaleSetDeployment, ''vmScaleSetName'', AzureVmScaleSetName, ''serviceFabricClusterName'', + AzureServiceFabricClusterName, ''vmScaleSetResourceId'', + AzureVmScaleSetResourceId, ''resourceGroupName'', + AzureResourceGroup, ''subscriptionId'', AzureSubscriptionId, ''fullDisplayName'', + FullDisplayName, ''mappingResourceId'', ResourceId) \r\n| + project ComputerId, Computer, NodeId + = case(isnotempty(AzureCloudServiceNodeIdentity), AzureCloudServiceNodeIdentity, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeIdentity, Computer), NodeProps = case(isnotempty(AzureCloudServiceNodeIdentity), + AzureCloudServiceNodeProps, isnotempty(AzureScaleSetNodeIdentity), + AzureScaleSetNodeProps, ComputerProps), Priority = 2; \r\nlet + NodeIdentityAndProps = union kind=inner isfuzzy = true EmptyNodeIdentityAndProps, + OmsNodeIdentityAndProps, ServiceMapNodeIdentityAndProps \r\n| + summarize arg_max(Priority, *) by ComputerId;\r\nInsightsMetrics\r\n| where + TimeGenerated between (startDateTime .. endDateTime)\r\n| where Origin == + ''vm.azm.ms'' and (Namespace == ''LogicalDisk'' and Name == ''FreeSpaceMB'')\r\n| + extend ComputerId = iff(isempty(_ResourceId), Computer, _ResourceId)\r\n| + where ComputerId in (computerList)| extend Tags = todynamic(Tags)\r\n| extend + Total = todouble(Tags[''vm.azm.ms/diskSizeMB'']), MountId = tostring(Tags[''vm.azm.ms/mountId''])\r\n| + extend Val = (100.0 - (Val * 100.0)/Total)\r\n| summarize hint.shufflekey + = ComputerId TrendValue = max(Val) by MountId, ComputerId, Computer, bin(TimeGenerated, + trendBinSize)\r\n","resource":"$ws","resultFormat":"table"},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""}],"title":"Max available Logical + Space Disk Used % ","transformations":[{"id":"organize","options":{"excludeByName":{"Average":true,"ComputerId":true,"ComputerId1":true,"Min":true,"MountId":true,"P10th":true,"P50th":true,"P5th":true,"P80th":true,"P90th":true,"P95th":true},"indexByName":{},"renameByName":{}}},{"id":"prepareTimeSeries","options":{"format":"many"}},{"id":"renameByRegex","options":{"regex":"(.+)\\s(.+)","renamePattern":"$2"}}],"type":"stat"}],"refresh":false,"schemaVersion":35,"style":"dark","tags":[],"templating":{"list":[{"current":{},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"current":{},"datasource":{"uid":"${ds}"},"definition":"Subscriptions()","hide":0,"includeAll":false,"label":"Subscription","multi":false,"name":"sub","options":[],"query":"Subscriptions()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"uid":"${ds}"},"definition":"Workspaces($sub)","hide":0,"includeAll":false,"label":"Workspace","multi":false,"name":"ws","options":[],"query":"Workspaces($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":0,"includeAll":false,"label":"Resource + Group(s)","multi":true,"name":"rg","options":[],"query":{"azureLogAnalytics":{"query":"InsightsMetrics\r\n| + where Origin == ''vm.azm.ms''\r\n| parse kind=regex tolower(_ResourceId) with + ''resourcegroups/'' resourceGroup ''/p(.+)'' *\r\n| project resourceGroup","resource":"$ws"},"queryType":"Azure + Log Analytics","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{"selected":false,"text":"Average","value":"score + = round(avg(Val), 2)"},"hide":0,"includeAll":false,"label":"Aggregate","multi":false,"name":"agg","options":[{"selected":true,"text":"Average","value":"score + = round(avg(Val), 2)"},{"selected":false,"text":"P5th","value":"score= round(percentile(Val, + 5), 2)"},{"selected":false,"text":"P10th","value":"score= round(percentile(Val, + 10), 2)"},{"selected":false,"text":"P50th","value":"score= round(percentile(Val, + 50), 2)"},{"selected":false,"text":"P80th","value":"score= round(percentile(Val, + 80), 2)"},{"selected":false,"text":"P90th","value":"score= round(percentile(Val, + 90), 2)"},{"selected":false,"text":"P95th","value":"score= round(percentile(Val, + 95), 2)"}],"query":"Average : score = round(avg(Val)\\, 2), P5th : score= + round(percentile(Val\\, 5)\\, 2), P10th : score= round(percentile(Val\\, + 10)\\, 2), P50th : score= round(percentile(Val\\, 50)\\, 2), P80th : score= + round(percentile(Val\\, 80)\\, 2), P90th : score= round(percentile(Val\\, + 90)\\, 2), P95th : score= round(percentile(Val\\, 95)\\, 2)","queryValue":"","skipUrlSync":false,"type":"custom"}]},"time":{"from":"now-15m","to":"now"},"title":"Azure + / Insights / Virtual Machines by Workspace","uid":"AzVmInsightsByWS","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kjbnnk0FrhVWVPTa+dDj6w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574415.336.438.482180|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Mtwt2BV7k + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"arg.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.2.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure + Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The + dashboard provides insights of Azure Resource Graph Explorer overview, compute, + Paas, networking, monitoring and security. Queries used in this Azure Monitor + dashboard we sourced from the [Azure Inventory Workbook](https://github.com/scautomation/Azure-Inventory-Workbook) + by Billy York. You can find more sample Azure Resource Graph queries by Billy + at this [GitHub](https://github.com/scautomation/AzureResourceGraph-Examples) + repository.","editable":true,"gnetId":14986,"id":5,"links":[{"asDropdown":false,"icon":"external + link","includeVars":false,"keepTime":false,"tags":[],"targetBlank":true,"title":"Azure + Resource Graph queries by Billy York","tooltip":"See more","type":"link","url":"https://github.com/scautomation/AzureResourceGraph-Examples"}],"liveNow":false,"panels":[{"collapsed":false,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[],"title":"Overview","type":"row"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":6,"w":7,"x":0,"y":1},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"Resources + | summarize count(type)","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Count + of All Resources","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"type"},"properties":[{"id":"custom.width","value":386}]},{"matcher":{"id":"byName","options":"properties"},"properties":[{"id":"custom.width","value":339}]}]},"gridPos":{"h":6,"w":17,"x":7,"y":1},"id":6,"options":{"showHeader":true,"sortBy":[]},"targets":[{"account":"","azureResourceGraph":{"query":"resourcecontainers + \r\n| where type has \"microsoft.resources/subscriptions/resourcegroups\"\r\n| + summarize Count=count(type) by type, subscriptionId | extend type = replace(@\"microsoft.resources/subscriptions/resourcegroups\", + @\"Resource Groups\", type)","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Subscriptions + and Resource Groups","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":10,"w":24,"x":0,"y":7},"id":8,"options":{"colorMode":"none","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{"titleSize":18},"textMode":"value_and_name"},"targets":[{"account":"","azureResourceGraph":{"query":"Resources + \r\n| extend type = case(\r\ntype contains ''microsoft.netapp/netappaccounts'', + ''NetApp Accounts'',\r\ntype contains \"microsoft.compute\", \"Azure Compute\",\r\ntype + contains \"microsoft.logic\", \"LogicApps\",\r\ntype contains ''microsoft.keyvault/vaults'', + \"Key Vaults\",\r\ntype contains ''microsoft.storage/storageaccounts'', \"Storage + Accounts\",\r\ntype contains ''microsoft.compute/availabilitysets'', ''Availability + Sets'',\r\ntype contains ''microsoft.operationalinsights/workspaces'', ''Azure + Monitor Resources'',\r\ntype contains ''microsoft.operationsmanagement'', + ''Operations Management Resources'',\r\ntype contains ''microsoft.insights'', + ''Azure Monitor Resources'',\r\ntype contains ''microsoft.desktopvirtualization/applicationgroups'', + ''WVD Application Groups'',\r\ntype contains ''microsoft.desktopvirtualization/workspaces'', + ''WVD Workspaces'',\r\ntype contains ''microsoft.desktopvirtualization/hostpools'', + ''WVD Hostpools'',\r\ntype contains ''microsoft.recoveryservices/vaults'', + ''Backup Vaults'',\r\ntype contains ''microsoft.web'', ''App Services'',\r\ntype + contains ''microsoft.managedidentity/userassignedidentities'',''Managed Identities'',\r\ntype + contains ''microsoft.storagesync/storagesyncservices'', ''Azure File Sync'',\r\ntype + contains ''microsoft.hybridcompute/machines'', ''ARC Machines'',\r\ntype contains + ''Microsoft.EventHub'', ''Event Hub'',\r\ntype contains ''Microsoft.EventGrid'', + ''Event Grid'',\r\ntype contains ''Microsoft.Sql'', ''SQL Resources'',\r\ntype + contains ''Microsoft.HDInsight/clusters'', ''HDInsight Clusters'',\r\ntype + contains ''microsoft.devtestlab'', ''DevTest Labs Resources'',\r\ntype contains + ''microsoft.containerinstance'', ''Container Instances Resources'',\r\ntype + contains ''microsoft.portal/dashboards'', ''Azure Dashboards'',\r\ntype contains + ''microsoft.containerregistry/registries'', ''Container Registry'',\r\ntype + contains ''microsoft.automation'', ''Automation Resources'',\r\ntype contains + ''sendgrid.email/accounts'', ''SendGrid Accounts'',\r\ntype contains ''microsoft.datafactory/factories'', + ''Data Factory'',\r\ntype contains ''microsoft.databricks/workspaces'', ''Databricks + Workspaces'',\r\ntype contains ''microsoft.machinelearningservices/workspaces'', + ''Machine Learnings Workspaces'',\r\ntype contains ''microsoft.alertsmanagement/smartdetectoralertrules'', + ''Azure Monitor Resources'',\r\ntype contains ''microsoft.apimanagement/service'', + ''API Management Services'',\r\ntype contains ''microsoft.dbforpostgresql'', + ''PostgreSQL Resources'',\r\ntype contains ''microsoft.scheduler/jobcollections'', + ''Scheduler Job Collections'',\r\ntype contains ''microsoft.visualstudio/account'', + ''Azure DevOps Organization'',\r\ntype contains ''microsoft.network/'', ''Network + Resources'',\r\ntype contains ''microsoft.migrate/'' or type contains ''microsoft.offazure'', + ''Azure Migrate Resources'',\r\ntype contains ''microsoft.servicebus/namespaces'', + ''Service Bus Namespaces'',\r\ntype contains ''microsoft.classic'', ''ASM + Obsolete Resources'',\r\ntype contains ''microsoft.resources/templatespecs'', + ''Template Spec Resources'',\r\ntype contains ''microsoft.virtualmachineimages'', + ''VM Image Templates'',\r\ntype contains ''microsoft.documentdb'', ''CosmosDB + DB Resources'',\r\ntype contains ''microsoft.alertsmanagement/actionrules'', + ''Azure Monitor Resources'',\r\ntype contains ''microsoft.kubernetes/connectedclusters'', + ''ARC Kubernetes Clusters'',\r\ntype contains ''microsoft.purview'', ''Purview + Resources'',\r\ntype contains ''microsoft.security'', ''Security Resources'',\r\ntype + contains ''microsoft.cdn'', ''CDN Resources'',\r\ntype contains ''microsoft.devices'',''IoT + Resources'',\r\ntype contains ''microsoft.datamigration'', ''Data Migraiton + Services'',\r\ntype contains ''microsoft.cognitiveservices'', ''Congitive + Services'',\r\ntype contains ''microsoft.customproviders'', ''Custom Providers'',\r\ntype + contains ''microsoft.appconfiguration'', ''App Services'',\r\ntype contains + ''microsoft.search'', ''Search Services'',\r\ntype contains ''microsoft.maps'', + ''Maps'',\r\ntype contains ''microsoft.containerservice/managedclusters'', + ''AKS'',\r\ntype contains ''microsoft.signalrservice'', ''SignalR'',\r\ntype + contains ''microsoft.resourcegraph/queries'', ''Resource Graph Queries'',\r\ntype + contains ''microsoft.batch'', ''MS Batch'',\r\ntype contains ''microsoft.analysisservices'', + ''Analysis Services'',\r\ntype contains ''microsoft.synapse/workspaces'', + ''Synapse Workspaces'',\r\ntype contains ''microsoft.synapse/workspaces/sqlpools'', + ''Synapse SQL Pools'',\r\ntype contains ''microsoft.kusto/clusters'', ''ADX + Clusters'',\r\ntype contains ''microsoft.resources/deploymentscripts'', ''Deployment + Scripts'',\r\ntype contains ''microsoft.aad/domainservices'', ''AD Domain + Services'',\r\ntype contains ''microsoft.labservices/labaccounts'', ''Lab + Accounts'',\r\ntype contains ''microsoft.automanage/accounts'', ''Automanage + Accounts'',\r\nstrcat(\"Not Translated: \", type))\r\n| summarize count() + by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Resource + Counts","type":"stat"},{"collapsed":true,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":22},"id":10,"panels":[{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":6,"w":6,"x":0,"y":2},"id":12,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"Resources + | where type == \"microsoft.compute/virtualmachines\"\r\n| extend vmState + = tostring(properties.extended.instanceView.powerState.displayStatus)\r\n| + extend vmState = iif(isempty(vmState), \"VM State Unknown\", (vmState))\r\n| + summarize count() by vmState","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Current + VM Status","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":6,"w":18,"x":6,"y":2},"id":13,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"Resources + | where type =~ \"microsoft.compute/virtualmachines\"\r\nor type =~ ''microsoft.compute/virtualmachinescalesets''\r\n| + extend Size = case(\r\ntype contains ''microsoft.compute/virtualmachinescalesets'', + strcat(\"VMSS \", sku.name),\r\ntype contains ''microsoft.compute/virtualmachines'', + properties.hardwareProfile.vmSize,\r\n\"Size not found\")\r\n| summarize Count=count(Size) + by vmSize=tostring(Size)","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Count + of VMs by VM Size","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[{"matcher":{"id":"byName","options":"OverProvision"},"properties":[{"id":"custom.width","value":141}]},{"matcher":{"id":"byName","options":"location"},"properties":[{"id":"custom.width","value":90}]},{"matcher":{"id":"byName","options":"Size"},"properties":[{"id":"custom.width","value":154}]},{"matcher":{"id":"byName","options":"Capacity"},"properties":[{"id":"custom.width","value":118}]},{"matcher":{"id":"byName","options":"OSType"},"properties":[{"id":"custom.width","value":115}]},{"matcher":{"id":"byName","options":"UpgradeMode"},"properties":[{"id":"custom.width","value":157}]},{"matcher":{"id":"byName","options":"resourceGroup"},"properties":[{"id":"custom.width","value":281}]}]},"gridPos":{"h":4,"w":24,"x":0,"y":8},"id":15,"options":{"showHeader":true,"sortBy":[]},"targets":[{"account":"","azureResourceGraph":{"query":"resources + \r\n| where type has ''microsoft.compute/virtualmachinescalesets''\r\n| extend + Size = sku.name\r\n| extend Capacity = sku.capacity\r\n| extend UpgradeMode + = properties.upgradePolicy.mode\r\n| extend OSType = properties.virtualMachineProfile.storageProfile.osDisk.osType\r\n| + extend OS = properties.virtualMachineProfile.storageProfile.imageReference.offer\r\n| + extend OSVersion = properties.virtualMachineProfile.storageProfile.imageReference.sku\r\n| + extend OverProvision = properties.overprovision\r\n| extend ZoneBalance = + properties.zoneBalance\r\n| extend Details = pack_all()\r\n| project VMSS + = id, location, resourceGroup, subscriptionId, Size, Capacity, OSType, UpgradeMode, + OverProvision, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"VM + Scale Sets","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":13,"w":24,"x":0,"y":12},"id":17,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"Resources + \r\n| where type == \"microsoft.compute/virtualmachines\"\r\n| extend vmID + = tolower(id)\r\n| extend osDiskId= tolower(tostring(properties.storageProfile.osDisk.managedDisk.id))\r\n | + join kind=leftouter(resources\r\n | where type =~ ''microsoft.compute/disks''\r\n | + where properties !has ''Unattached''\r\n | where properties has + ''osType''\r\n | project timeCreated = tostring(properties.timeCreated), + OS = tostring(properties.osType), osSku = tostring(sku.name), osDiskSizeGB + = toint(properties.diskSizeGB), osDiskId=tolower(tostring(id))) on osDiskId\r\n | + join kind=leftouter(resources\r\n\t\t\t| where type =~ ''microsoft.compute/availabilitysets''\r\n\t\t\t| + extend VirtualMachines = array_length(properties.virtualMachines)\r\n\t\t\t| + mv-expand VirtualMachine=properties.virtualMachines\r\n\t\t\t| extend FaultDomainCount + = properties.platformFaultDomainCount\r\n\t\t\t| extend UpdateDomainCount + = properties.platformUpdateDomainCount\r\n\t\t\t| extend vmID = tolower(VirtualMachine.id)\r\n\t\t\t| + project AvailabilitySetID = id, vmID, FaultDomainCount, UpdateDomainCount + ) on vmID\r\n\t\t| join kind=leftouter(resources\r\n\t\t\t| where type =~ + ''microsoft.sqlvirtualmachine/sqlvirtualmachines''\r\n\t\t\t| extend SQLLicense + = properties.sqlServerLicenseType\r\n\t\t\t| extend SQLImage = properties.sqlImageOffer\r\n\t\t\t| + extend SQLSku = properties.sqlImageSku\r\n\t\t\t| extend SQLManagement = properties.sqlManagement\r\n\t\t\t| + extend vmID = tostring(tolower(properties.virtualMachineResourceId))\r\n\t\t\t| + project SQLId=id, SQLLicense, SQLImage, SQLSku, SQLManagement, vmID ) on vmID\r\n| + project-away vmID1, vmID2, osDiskId1\r\n| extend Details = pack_all()\r\n| + project vmID, SQLId, AvailabilitySetID, OS, resourceGroup, location, subscriptionId, + SQLLicense, SQLImage,SQLSku, SQLManagement, FaultDomainCount, UpdateDomainCount, + Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"VM + Overview","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":13,"w":24,"x":0,"y":25},"id":18,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"Resources + \r\n| where type == \"microsoft.compute/virtualmachines\"\r\n| extend osDiskId= + tolower(tostring(properties.storageProfile.osDisk.managedDisk.id))\r\n | + join kind=leftouter(resources\r\n | where type =~ ''microsoft.compute/disks''\r\n | + where properties !has ''Unattached''\r\n | where properties has + ''osType''\r\n | project timeCreated = tostring(properties.timeCreated), + OS = tostring(properties.osType), osSku = tostring(sku.name), osDiskSizeGB + = toint(properties.diskSizeGB), osDiskId=tolower(tostring(id))) on osDiskId\r\n | + join kind=leftouter(Resources\r\n | where type =~ ''microsoft.compute/disks''\r\n | + where properties !has \"osType\"\r\n | where properties !has ''Unattached''\r\n | + project sku = tostring(sku.name), diskSizeGB = toint(properties.diskSizeGB), + id = managedBy\r\n | summarize sum(diskSizeGB), count(sku) by id, + sku) on id\r\n| project vmId=id, OS, location, resourceGroup, timeCreated,subscriptionId, + osDiskId, osSku, osDiskSizeGB, DataDisksGB=sum_diskSizeGB, diskSkuCount=count_sku\r\n| + sort by diskSkuCount desc","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"VM + Storage","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":13,"w":24,"x":0,"y":38},"id":19,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"Resources\r\n| + where type =~ ''microsoft.compute/virtualmachines''\r\n| extend nics=array_length(properties.networkProfile.networkInterfaces)\r\n| + mv-expand nic=properties.networkProfile.networkInterfaces\r\n| where nics + == 1 or nic.properties.primary =~ ''true'' or isempty(nic)\r\n| project vmId + = id, vmName = name, vmSize=tostring(properties.hardwareProfile.vmSize), nicId + = tostring(nic.id)\r\n\t| join kind=leftouter (\r\n \t\tResources\r\n \t\t| + where type =~ ''microsoft.network/networkinterfaces''\r\n \t\t| extend ipConfigsCount=array_length(properties.ipConfigurations)\r\n \t\t| + mv-expand ipconfig=properties.ipConfigurations\r\n \t\t| where ipConfigsCount + == 1 or ipconfig.properties.primary =~ ''true''\r\n \t\t| project nicId = + id, privateIP= tostring(ipconfig.properties.privateIPAddress), publicIpId + = tostring(ipconfig.properties.publicIPAddress.id), subscriptionId) on nicId\r\n| + project-away nicId1\r\n| summarize by vmId, vmSize, nicId, privateIP, publicIpId, + subscriptionId\r\n\t| join kind=leftouter (\r\n \t\tResources\r\n \t\t| + where type =~ ''microsoft.network/publicipaddresses''\r\n \t\t| project publicIpId + = id, publicIpAddress = tostring(properties.ipAddress)) on publicIpId\r\n| + project-away publicIpId1\r\n| sort by publicIpAddress desc","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"VM + Networking","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":13,"w":24,"x":0,"y":51},"id":21,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"Resources \r\n| + where type contains \"microsoft.compute/disks\" \r\n| extend diskState = tostring(properties.diskState)\r\n| + where managedBy == \"\"\r\n or diskState == ''Unattached''\r\n| project + id, diskState, resourceGroup, location, subscriptionId","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Orphaned + Disks","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":13,"w":24,"x":0,"y":64},"id":20,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type =~ \"microsoft.network/networkinterfaces\"\r\n| join kind=leftouter + (resources\r\n| where type =~ ''microsoft.network/privateendpoints''\r\n| + extend nic = todynamic(properties.networkInterfaces)\r\n| mv-expand nic\r\n| + project id=tostring(nic.id) ) on id\r\n| where isempty(id1)\r\n| where properties + !has ''virtualmachine''\r\n| project id, resourceGroup, location, subscriptionId","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Orphaned + NICs","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":13,"w":24,"x":0,"y":77},"id":26,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"where + type == \"microsoft.hybridcompute/machines\"\r\n| project MachineId=id, status + = properties.status, \r\n\t\t\t LastSeen = properties.lastStatusChange, \r\n\t\t\t FQDN + = properties.machineFqdn, \r\n\t\t\t OS = properties.osName, \r\n\t\t\t ServerVersion + = properties.osVersion\r\n| extend ServerVersion = case(\r\n ServerVersion + has ''10.0.17763'', ''Server 2019'',\r\n ServerVersion has ''10.0.16299'', + ''Server 2016'',\r\n ServerVersion has ''10.0.14393'', ''Server 2016'',\r\n ServerVersion + has ''6.3.9600'', ''Server 2012 R2'',\r\n\tServerVersion)","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Hybrid + Compute","type":"table"}],"title":"Compute","type":"row"},{"collapsed":true,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":23},"id":23,"panels":[{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":3},"id":25,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.automation''\r\n\tor type has ''microsoft.logic''\r\n\tor + type has ''microsoft.web/customapis''\r\n| extend type = case(\r\n\ttype =~ + ''microsoft.automation/automationaccounts'', ''Automation Accounts'',\r\n\ttype + == ''microsoft.web/serverfarms'', \"App Service Plans\",\r\n\tkind == ''functionapp'', + \"Azure Functions\", \r\n\tkind == \"api\", \"API Apps\", \r\n\ttype == ''microsoft.web/sites'', + \"App Services\",\r\n\ttype =~ ''microsoft.web/connections'', ''LogicApp Connectors'',\r\n\ttype + =~ ''microsoft.web/customapis'',''LogicApp API Connectors'',\r\n\ttype =~ + ''microsoft.logic/workflows'',''LogicApps'',\r\n type =~ ''microsoft.logic/integrationaccounts'', + ''Integration Accounts'',\r\n\ttype =~ ''microsoft.automation/automationaccounts/runbooks'', + ''Automation Runbooks'',\r\n type =~ ''microsoft.automation/automationaccounts/configurations'', + ''Automation Configurations'',\r\nstrcat(\"Not Translated: \", type))\r\n| + summarize count() by type\r\n| where type !has \"Not Translated\"","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Animation + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":3},"id":27,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.automation''\r\n\t or type has ''microsoft.logic''\r\n\t + or type has ''microsoft.web/customapis''\r\n| extend type = case(\r\n\ttype + =~ ''microsoft.automation/automationaccounts'', ''Automation Accounts'',\r\n\ttype + =~ ''microsoft.web/connections'', ''LogicApp Connectors'',\r\n\ttype =~ ''microsoft.web/customapis'',''LogicApp + API Connectors'',\r\n\ttype =~ ''microsoft.logic/workflows'',''LogicApps'',\r\n type + =~ ''microsoft.logic/integrationaccounts'', ''Integration Accounts'',\r\n\ttype + =~ ''microsoft.automation/automationaccounts/runbooks'', ''Automation Runbooks'',\r\n\ttype + =~ ''microsoft.automation/automationaccounts/configurations'', ''Automation + Configurations'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| extend RunbookType + = tostring(properties.runbookType)\r\n| extend LogicAppTrigger = properties.definition.triggers\r\n| + extend LogicAppTrigger = iif(type =~ ''LogicApps'', case(\r\n\tLogicAppTrigger + has ''manual'', tostring(LogicAppTrigger.manual.type),\r\n\tLogicAppTrigger + has ''Recurrence'', tostring(LogicAppTrigger.Recurrence.type),\r\n LogicAppTrigger + has ''When_an_Azure_Security_Center_Alert'', ''Azure Security Center Alert'',\r\n LogicAppTrigger + has ''When_an_Azure_Security_Center_Recommendation'', ''Azure Security Center + Recommendation'',\r\n LogicAppTrigger has ''When_a_response_to_an_Azure_Sentinel_alert'', + ''Azure Sentinel Alert'',\r\n LogicAppTrigger has ''When_Azure_Sentinel_incident_creation'', + ''Azure Sentinel Incident'',\r\n\tstrcat(\"Unknown Trigger type\", LogicAppTrigger)), + LogicAppTrigger)\r\n| extend State = case(\r\n\ttype =~ ''Automation Runbooks'', + properties.state, \r\n\ttype =~ ''LogicApps'', properties.state,\r\n\ttype + =~ ''Automation Accounts'', properties.state,\r\n\ttype =~ ''Automation Configurations'', + properties.state,\r\n\t'' '')\r\n| extend CreatedDate = case(\r\n\ttype =~ + ''Automation Runbooks'', properties.creationTime, \r\n\ttype =~ ''LogicApps'', + properties.createdTime,\r\n\ttype =~ ''Automation Accounts'', properties.creationTime,\r\n\ttype + =~ ''Automation Configurations'', properties.creationTime,\r\n\t'' '')\r\n| + extend LastModified = case(\r\n\ttype =~ ''Automation Runbooks'', properties.lastModifiedTime, + \r\n\ttype =~ ''LogicApps'', properties.changedTime,\r\n\ttype =~ ''Automation + Accounts'', properties.lastModifiedTime,\r\n\ttype =~ ''Automation Configurations'', + properties.lastModifiedTime,\r\n\t'' '')\r\n| extend Details = pack_all()\r\n| + project Resource=id, subscriptionId, type, resourceGroup, RunbookType, LogicAppTrigger, + State, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Automation + Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":13},"id":28,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.web''\r\n\t or type =~ ''microsoft.apimanagement/service''\r\n\t + or type =~ ''microsoft.network/frontdoors''\r\n\t or type =~ ''microsoft.network/applicationgateways''\r\n\t + or type =~ ''microsoft.appconfiguration/configurationstores''\r\n| extend + type = case(\r\n\ttype == ''microsoft.web/serverfarms'', \"App Service Plans\",\r\n\tkind + == ''functionapp'', \"Azure Functions\", \r\n\tkind == \"api\", \"API Apps\", + \r\n\ttype == ''microsoft.web/sites'', \"App Services\",\r\n\ttype =~ ''microsoft.network/applicationgateways'', + ''App Gateways'',\r\n\ttype =~ ''microsoft.network/frontdoors'', ''Front Door'',\r\n\ttype + =~ ''microsoft.apimanagement/service'', ''API Management'',\r\n\ttype =~ ''microsoft.web/certificates'', + ''App Certificates'',\r\n\ttype =~ ''microsoft.appconfiguration/configurationstores'', + ''App Config Stores'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| where + type !has \"Not Translated\"\r\n| summarize count() by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Apps + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":13},"id":29,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.web''\r\n\t or type =~ ''microsoft.apimanagement/service''\r\n\t + or type =~ ''microsoft.network/frontdoors''\r\n\t or type =~ ''microsoft.network/applicationgateways''\r\n\t + or type =~ ''microsoft.appconfiguration/configurationstores''\r\n| extend + type = case(\r\n\ttype == ''microsoft.web/serverfarms'', \"App Service Plans\",\r\n\tkind + == ''functionapp'', \"Azure Functions\", \r\n\tkind == \"api\", \"API Apps\", + \r\n\ttype == ''microsoft.web/sites'', \"App Services\",\r\n\ttype =~ ''microsoft.network/applicationgateways'', + ''App Gateways'',\r\n\ttype =~ ''microsoft.network/frontdoors'', ''Front Door'',\r\n\ttype + =~ ''microsoft.apimanagement/service'', ''API Management'',\r\n\ttype =~ ''microsoft.web/certificates'', + ''App Certificates'',\r\n\ttype =~ ''microsoft.appconfiguration/configurationstores'', + ''App Config Stores'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| where + type !has \"Not Translated\"\r\n| extend Sku = case(\r\n\ttype =~ ''App Gateways'', + properties.sku.name, \r\n\ttype =~ ''Azure Functions'', properties.sku,\r\n\ttype + =~ ''API Management'', sku.name,\r\n\ttype =~ ''App Service Plans'', sku.name,\r\n\ttype + =~ ''App Services'', properties.sku,\r\n\ttype =~ ''App Config Stores'', sku.name,\r\n\t'' + '')\r\n| extend State = case(\r\n\ttype =~ ''App Config Stores'', properties.provisioningState,\r\n\ttype + =~ ''App Service Plans'', properties.status,\r\n\ttype =~ ''Azure Functions'', + properties.enabled,\r\n\ttype =~ ''App Services'', properties.state,\r\n\ttype + =~ ''API Management'', properties.provisioningState,\r\n\ttype =~ ''App Gateways'', + properties.provisioningState,\r\n\ttype =~ ''Front Door'', properties.provisioningState,\r\n\t'' + '')\r\n| mv-expand publicIpId=properties.frontendIPConfigurations\r\n| mv-expand + publicIpId = publicIpId.properties.publicIPAddress.id\r\n| extend publicIpId + = tostring(publicIpId)\r\n\t| join kind=leftouter(\r\n\t \tResources\r\n \t\t| + where type =~ ''microsoft.network/publicipaddresses''\r\n \t\t| project publicIpId + = id, publicIpAddress = tostring(properties.ipAddress)) on publicIpId\r\n| + extend PublicIP = case(\r\n\ttype =~ ''API Management'', properties.publicIPAddresses,\r\n\ttype + =~ ''App Gateways'', publicIpAddress,\r\n\t'' '')\r\n| extend Details = pack_all()\r\n| + project Resource=id, type, subscriptionId, Sku, State, PublicIP, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Apps + Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":23},"id":30,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.servicebus''\r\n\tor type has ''microsoft.eventhub''\r\n\tor + type has ''microsoft.eventgrid''\r\n\tor type has ''microsoft.relay''\r\n| + extend type = case(\r\n\ttype == ''microsoft.eventgrid/systemtopics'', \"EventGrid + System Topics\",\r\n\ttype =~ \"microsoft.eventgrid/topics\", \"EventGrid + Topics\",\r\n\ttype =~ ''microsoft.eventhub/namespaces'', \"EventHub Namespaces\",\r\n\ttype + =~ ''microsoft.servicebus/namespaces'', ''ServiceBus Namespaces'',\r\n\ttype + =~ ''microsoft.relay/namespaces'', ''Relays'',\r\n\tstrcat(\"Not Translated: + \", type))\r\n| where type !has \"Not Translated\"\r\n| summarize count() + by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Events + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":23},"id":31,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.servicebus''\r\n\tor type has ''microsoft.eventhub''\r\n\tor + type has ''microsoft.eventgrid''\r\n\tor type has ''microsoft.relay''\r\n| + extend type = case(\r\n\ttype == ''microsoft.eventgrid/systemtopics'', \"EventGrid + System Topics\",\r\n\ttype =~ \"microsoft.eventgrid/topics\", \"EventGrid + Topics\",\r\n\ttype =~ ''microsoft.eventhub/namespaces'', \"EventHub Namespaces\",\r\n\ttype + =~ ''microsoft.servicebus/namespaces'', ''ServiceBus Namespaces'',\r\n\ttype + =~ ''microsoft.relay/namespaces'', ''Relays'',\r\n\tstrcat(\"Not Translated: + \", type))\r\n| extend Sku = case(\r\n\ttype =~ ''Relays'', sku.name, \r\n\ttype + =~ ''EventGrid System Topics'', properties.sku,\r\n\ttype =~ ''EventGrid Topics'', + sku.name,\r\n\ttype =~ ''EventHub Namespaces'', sku.name,\r\n\ttype =~ ''ServiceBus + Namespaces'', sku.sku,\r\n\t'' '')\r\n| extend Endpoint = case(\r\n\ttype + =~ ''Relays'', properties.serviceBusEndpoint,\r\n\ttype =~ ''EventGrid Topics'', + properties.endpoint,\r\n\ttype =~ ''EventHub Namespaces'', properties.serviceBusEndpoint,\r\n\ttype + =~ ''ServiceBus Namespaces'', properties.serviceBusEndpoint,\r\n\t'' '')\r\n| + extend Status = case(\r\n\ttype =~ ''Relays'', properties.provisioningState,\r\n\ttype + =~ ''EventGrid System Topics'', properties.provisioningState,\r\n\ttype =~ + ''EventGrid Topics'', properties.publicNetworkAccess,\r\n\ttype =~ ''EventHub + Namespaces'', properties.status,\r\n\ttype =~ ''ServiceBus Namespaces'', properties.status,\r\n\t'' + '')\r\n| extend Details = pack_all()\r\n| project Resource=id, type, subscriptionId, + resourceGroup, Sku, Status, Endpoint, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Events + Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":33},"id":32,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources + \r\n| where type has ''microsoft.documentdb''\r\n\tor type has ''microsoft.sql''\r\n\tor + type has ''microsoft.dbformysql''\r\n\tor type has ''microsoft.sql''\r\n or + type has ''microsoft.purview''\r\n or type has ''microsoft.datafactory''\r\n\tor + type has ''microsoft.analysisservices''\r\n\tor type has ''microsoft.datamigration''\r\n\tor + type has ''microsoft.synapse''\r\n\tor type has ''microsoft.datafactory''\r\n\tor + type has ''microsoft.kusto''\r\n| extend type = case(\r\n\ttype =~ ''microsoft.documentdb/databaseaccounts'', + ''CosmosDB'',\r\n\ttype =~ ''microsoft.sql/servers/databases'', ''SQL DBs'',\r\n\ttype + =~ ''microsoft.dbformysql/servers'', ''MySQL'',\r\n\ttype =~ ''microsoft.sql/servers'', + ''SQL Servers'',\r\n type =~ ''microsoft.purview/accounts'', ''Purview + Accounts'',\r\n\ttype =~ ''microsoft.synapse/workspaces/sqlpools'', ''Synapse + SQL Pools'',\r\n\ttype =~ ''microsoft.kusto/clusters'', ''ADX Clusters'',\r\n\ttype + =~ ''microsoft.datafactory/factories'', ''Data Factories'',\r\n\ttype =~ ''microsoft.synapse/workspaces'', + ''Synapse Workspaces'',\r\n\ttype =~ ''microsoft.analysisservices/servers'', + ''Analysis Services Servers'',\r\n\ttype =~ ''microsoft.datamigration/services'', + ''DB Migration Service'',\r\n\ttype =~ ''microsoft.sql/managedinstances/databases'', + ''Managed Instance DBs'',\r\n\ttype =~ ''microsoft.sql/managedinstances'', + ''Managed Instnace'',\r\n\ttype =~ ''microsoft.datamigration/services/projects'', + ''Data Migration Projects'',\r\n\ttype =~ ''microsoft.sql/virtualclusters'', + ''SQL Virtual Clusters'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| where + type !has \"Not Translated\"\r\n| summarize count() by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Data + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"left","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":33},"id":33,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources + \r\n| where type has ''microsoft.documentdb''\r\n\tor type has ''microsoft.sql''\r\n\tor + type has ''microsoft.dbformysql''\r\n\tor type has ''microsoft.sql''\r\n or + type has ''microsoft.purview''\r\n or type has ''microsoft.datafactory''\r\n\tor + type has ''microsoft.analysisservices''\r\n\tor type has ''microsoft.datamigration''\r\n\tor + type has ''microsoft.synapse''\r\n\tor type has ''microsoft.datafactory''\r\n\tor + type has ''microsoft.kusto''\r\n| extend type = case(\r\n\ttype =~ ''microsoft.documentdb/databaseaccounts'', + ''CosmosDB'',\r\n\ttype =~ ''microsoft.sql/servers/databases'', ''SQL DBs'',\r\n\ttype + =~ ''microsoft.dbformysql/servers'', ''MySQL'',\r\n\ttype =~ ''microsoft.sql/servers'', + ''SQL Servers'',\r\n type =~ ''microsoft.purview/accounts'', ''Purview + Accounts'',\r\n\ttype =~ ''microsoft.synapse/workspaces/sqlpools'', ''Synapse + SQL Pools'',\r\n\ttype =~ ''microsoft.kusto/clusters'', ''ADX Clusters'',\r\n\ttype + =~ ''microsoft.datafactory/factories'', ''Data Factories'',\r\n\ttype =~ ''microsoft.synapse/workspaces'', + ''Synapse Workspaces'',\r\n\ttype =~ ''microsoft.analysisservices/servers'', + ''Analysis Services Servers'',\r\n\ttype =~ ''microsoft.datamigration/services'', + ''DB Migration Service'',\r\n\ttype =~ ''microsoft.sql/managedinstances/databases'', + ''Managed Instance DBs'',\r\n\ttype =~ ''microsoft.sql/managedinstances'', + ''Managed Instnace'',\r\n\ttype =~ ''microsoft.datamigration/services/projects'', + ''Data Migration Projects'',\r\n\ttype =~ ''microsoft.sql/virtualclusters'', + ''SQL Virtual Clusters'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| where + type !has \"Not Translated\"\r\n| extend Sku = case(\r\n\ttype =~ ''CosmosDB'', + properties.databaseAccountOfferType,\r\n\ttype =~ ''SQL DBs'', sku.name,\r\n\ttype + =~ ''MySQL'', sku.name,\r\n\ttype =~ ''ADX Clusters'', sku.name,\r\n\ttype + =~ ''Purview Accounts'', sku.name,\r\n\t'' '')\r\n| extend Status = case(\r\n\ttype + =~ ''CosmosDB'', properties.provisioningState,\r\n\ttype =~ ''SQL DBs'', properties.status,\r\n\ttype + =~ ''MySQL'', properties.userVisibleState,\r\n\ttype =~ ''Managed Instance + DBs'', properties.status,\r\n\t'' '')\r\n| extend Endpoint = case(\r\n\ttype + =~ ''MySQL'', properties.fullyQualifiedDomainName,\r\n\ttype =~ ''SQL Servers'', + properties.fullyQualifiedDomainName,\r\n\ttype =~ ''CosmosDB'', properties.documentEndpoint,\r\n\ttype + =~ ''ADX Clusters'', properties.uri,\r\n\ttype =~ ''Purview Accounts'', properties.endpoints,\r\n\ttype + =~ ''Synapse Workspaces'', properties.connectivityEndpoints,\r\n\ttype =~ + ''Synapse SQL Pools'', sku.name,\r\n\t'' '')\r\n| extend Tier = sku.tier\r\n| + extend License = properties.licenseType\r\n| extend maxSizeGB = todouble(case(\r\n\ttype + =~ ''SQL DBs'', properties.maxSizeBytes,\r\n\ttype =~ ''MySQL'', properties.storageProfile.storageMB,\r\n\ttype + =~ ''Synapse SQL Pools'', properties.maxSizeBytes,\r\n\t'' ''))\r\n| extend + maxSizeGB = case(\r\n\t\ttype has ''SQL DBs'', maxSizeGB /1000 /1000 /1000,\r\n\t\ttype + has ''Synapse SQL Pools'', maxSizeGB /1000 /1000 /1000,\r\n\t\ttype has ''MySQL'', + maxSizeGB /1000,\r\n\t\tmaxSizeGB)\r\n| extend Details = pack_all()\r\n| project + Resource=id, resourceGroup, subscriptionId, type, Sku, Tier, Status, Endpoint, + maxSizeGB, Details\r\n","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Data + Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":43},"id":34,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources + \r\n| where type =~ ''microsoft.storagesync/storagesyncservices''\r\n\tor + type =~ ''microsoft.recoveryservices/vaults''\r\n\tor type =~ ''microsoft.storage/storageaccounts''\r\n\tor + type =~ ''microsoft.keyvault/vaults''\r\n| extend type = case(\r\n\ttype =~ + ''microsoft.storagesync/storagesyncservices'', ''Azure File Sync'',\r\n\ttype + =~ ''microsoft.recoveryservices/vaults'', ''Azure Backup'',\r\n\ttype =~ ''microsoft.storage/storageaccounts'', + ''Storage Accounts'',\r\n\ttype =~ ''microsoft.keyvault/vaults'', ''Key Vaults'',\r\n\tstrcat(\"Not + Translated: \", type))\r\n| where type !has \"Not Translated\"\r\n| summarize + count() by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Storage + and Backup Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":43},"id":35,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources + \r\n| where type =~ ''microsoft.storagesync/storagesyncservices''\r\n\tor + type =~ ''microsoft.recoveryservices/vaults''\r\n\tor type =~ ''microsoft.storage/storageaccounts''\r\n\tor + type =~ ''microsoft.keyvault/vaults''\r\n| extend type = case(\r\n\ttype =~ + ''microsoft.storagesync/storagesyncservices'', ''Azure File Sync'',\r\n\ttype + =~ ''microsoft.recoveryservices/vaults'', ''Azure Backup'',\r\n\ttype =~ ''microsoft.storage/storageaccounts'', + ''Storage Accounts'',\r\n\ttype =~ ''microsoft.keyvault/vaults'', ''Key Vaults'',\r\n\tstrcat(\"Not + Translated: \", type))\r\n| extend Sku = case(\r\n\ttype !has ''Key Vaults'', + sku.name,\r\n\ttype =~ ''Key Vaults'', properties.sku.name,\r\n\t'' '')\r\n| + extend Details = pack_all()\r\n| project Resource=id, type, kind, subscriptionId, + resourceGroup, Sku, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Storage + and Backup Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":53},"id":36,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type =~ ''microsoft.containerservice/managedclusters''\r\n\tor type + =~ ''microsoft.containerregistry/registries''\r\n\tor type =~ ''microsoft.containerinstance/containergroups''\r\n| + extend type = case(\r\n\ttype =~ ''microsoft.containerservice/managedclusters'', + ''AKS'',\r\n\ttype =~ ''microsoft.containerregistry/registries'', ''Container + Registry'',\r\n\ttype =~ ''microsoft.containerinstance/containergroups'', + ''Container Instnaces'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| where + type !has \"Not Translated\"\r\n| summarize count() by type\t","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Containers + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":53},"id":37,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type =~ ''microsoft.containerservice/managedclusters''\r\n\tor type + =~ ''microsoft.containerregistry/registries''\r\n\tor type =~ ''microsoft.containerinstance/containergroups''\r\n| + extend type = case(\r\n\ttype =~ ''microsoft.containerservice/managedclusters'', + ''AKS'',\r\n\ttype =~ ''microsoft.containerregistry/registries'', ''Container + Registry'',\r\n\ttype =~ ''microsoft.containerinstance/containergroups'', + ''Container Instnaces'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| where + type !has \"Not Translated\"\r\n| extend Tier = sku.tier\r\n| extend sku = + sku.name\r\n| extend State = case(\r\n\ttype =~ ''Container Registry'', properties.provisioningState,\r\n\ttype + =~ ''Container Instance'', properties.instanceView.state,\r\n\tproperties.powerState.code)\r\n| + extend Containers = properties.containers\r\n| mvexpand Containers\r\n| extend + RestartCount = Containers.properties.instanceView.restartCount\r\n| extend + Image = Containers.properties.image\r\n| extend RestartPolicy = properties.restartPolicy\r\n| + extend IP = properties.ipAddress.ip\r\n| extend Version = properties.kubernetesVersion\r\n| + extend AgentProfiles = properties.agentPoolProfiles\r\n| mvexpand AgentProfiles\r\n| + extend NodeCount = AgentProfiles.[\"count\"]\r\n| extend Details = pack_all()\r\n| + project id, type, location, resourceGroup, subscriptionId, sku, Tier, State, + RestartCount, Version, NodeCount, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Containers + Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":63},"id":38,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type =~ ''Microsoft.MachineLearningServices/workspaces''\r\n\tor type + =~ ''microsoft.cognitiveservices/accounts''\r\n| extend type = case(\r\n\ttype + =~ ''Microsoft.MachineLearningServices/workspaces'', ''ML Workspaces'',\r\n\ttype + =~ ''microsoft.cognitiveservices/accounts'', ''Cognitive Services'',\r\n\tstrcat(\"Not + Translated: \", type))\r\n| where type !has \"Not Translated\"\r\n| summarize + count() by type\t","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"ML/AI + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":63},"id":39,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type =~ ''Microsoft.MachineLearningServices/workspaces''\r\n\tor type + =~ ''microsoft.cognitiveservices/accounts''\r\n| extend type = case(\r\n\ttype + =~ ''Microsoft.MachineLearningServices/workspaces'', ''ML Workspaces'',\r\n\ttype + =~ ''microsoft.cognitiveservices/accounts'', ''Cognitive Services'',\r\n\tstrcat(\"Not + Translated: \", type))\r\n| where type !has \"Not Translated\"\r\n| extend + Tier = sku.tier\r\n| extend sku = sku.name\r\n| extend Endpoint = case(\r\n\ttype + =~ ''ML Workspaces'', properties.discoveryUrl,\r\n\ttype =~ ''Cognitive Services'', + properties.endpoint,\r\n\t'' '')\r\n| extend Capabilities = properties.capabilities\r\n| + mvexpand Capabilities\r\n| extend Capabilities.value\r\n| extend Storage = + properties.storageAccount\r\n| extend AppInsights = properties.applicationInsights\r\n| + extend Details = pack_all()\r\n| project id, type, location, resourceGroup, + subscriptionId, sku, Tier, Endpoint, Capabilities_value, Storage, AppInsights, + Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"ML/AI + Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":73},"id":40,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type =~ ''microsoft.devices/iothubs''\r\n\tor type =~ ''microsoft.iotcentral/iotapps''\r\n\tor + type =~ ''microsoft.security/iotsecuritysolutions''\r\n| extend type = case + (\r\n\ttype =~ ''microsoft.devices/iothubs'', ''IoT Hubs'',\r\n\ttype =~ ''microsoft.iotcentral/iotapps'', + ''IoT Apps'',\r\n\ttype =~ ''microsoft.security/iotsecuritysolutions'', ''IoT + Security'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| summarize count() + by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"IoT + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":73},"id":41,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type =~ ''microsoft.devices/iothubs''\r\n\tor type =~ ''microsoft.iotcentral/iotapps''\r\n\tor + type =~ ''microsoft.security/iotsecuritysolutions''\r\n| extend type = case + (\r\n\ttype =~ ''microsoft.devices/iothubs'', ''IoT Hubs'',\r\n\ttype =~ ''microsoft.iotcentral/iotapps'', + ''IoT Apps'',\r\n\ttype =~ ''microsoft.security/iotsecuritysolutions'', ''IoT + Security'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| extend Tier = sku.tier\r\n| + extend sku = sku.name\r\n| extend State = properties.state\r\n| extend HostName + = properties.hostName\r\n| extend EventHubEndPoint = properties.eventHubEndpoints.events.endpoint\r\n| + extend Details = pack_all()\r\n| project id, type, location, resourceGroup, + subscriptionId, sku, Tier, State, HostName, EventHubEndPoint, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"IoT + Detailed View","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":6,"x":0,"y":83},"id":42,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.desktopvirtualization''\r\n| extend type = case(\r\n\ttype + =~ ''microsoft.desktopvirtualization/applicationgroups'', ''WVD App Groups'',\r\n\ttype + =~ ''microsoft.desktopvirtualization/hostpools'', ''WVD Host Pools'',\r\n\ttype + =~ ''microsoft.desktopvirtualization/workspaces'', ''WVD Workspaces'',\r\n\tstrcat(\"Not + Translated: \", type))\r\n| where type !has \"Not Translated\"\r\n| summarize + count() by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Windows + Virtual Desktop Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":10,"w":18,"x":6,"y":83},"id":43,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.desktopvirtualization''\r\n| extend type = case(\r\n\ttype + =~ ''microsoft.desktopvirtualization/applicationgroups'', ''WVD App Groups'',\r\n\ttype + =~ ''microsoft.desktopvirtualization/hostpools'', ''WVD Host Pools'',\r\n\ttype + =~ ''microsoft.desktopvirtualization/workspaces'', ''WVD Workspaces'',\r\n\tstrcat(\"Not + Translated: \", type))\r\n| where type !has \"Not Translated\"\r\n| extend + Details = pack_all()\r\n| project id, type, resourceGroup, subscriptionId, + kind, location, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Windows + Virtual Desktop Detailed View","type":"table"}],"title":"PaaS","type":"row"},{"collapsed":true,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":3},"id":45,"panels":[{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":4},"id":47,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"where + type has \"microsoft.network\"\r\n or type has ''microsoft.cdn''\r\n| extend + type = case(\r\n\ttype == ''microsoft.network/networkinterfaces'', \"NICs\",\r\n\ttype + == ''microsoft.network/networksecuritygroups'', \"NSGs\", \r\n\ttype == \"microsoft.network/publicipaddresses\", + \"Public IPs\", \r\n\ttype == ''microsoft.network/virtualnetworks'', \"vNets\",\r\n\ttype + == ''microsoft.network/networkwatchers/connectionmonitors'', \"Connection + Monitors\",\r\n\ttype == ''microsoft.network/privatednszones'', \"Private + DNS\",\r\n\ttype == ''microsoft.network/virtualnetworkgateways'', @\"vNet + Gateways\",\r\n\ttype == ''microsoft.network/connections'', \"Connections\",\r\n\ttype + == ''microsoft.network/networkwatchers'', \"Network Watchers\",\r\n\ttype + == ''microsoft.network/privateendpoints'', \"Private Endpoints\",\r\n\ttype + == ''microsoft.network/localnetworkgateways'', \"Local Network Gateways\",\r\n\ttype + == ''microsoft.network/privatednszones/virtualnetworklinks'', \"vNet Links\",\r\n\ttype + == ''microsoft.network/dnszones'', ''DNS Zones'',\r\n\ttype == ''microsoft.network/networkwatchers/flowlogs'', + ''Flow Logs'',\r\n\ttype == ''microsoft.network/routetables'', ''Route Tables'',\r\n\ttype + == ''microsoft.network/loadbalancers'', ''Load Balancers'',\r\n\ttype == ''microsoft.network/ddosprotectionplans'', + ''DDoS Protection Plans'',\r\n\ttype == ''microsoft.network/applicationsecuritygroups'', + ''App Security Groups'',\r\n\ttype == ''microsoft.network/azurefirewalls'', + ''Azure Firewalls'',\r\n\ttype == ''microsoft.network/applicationgateways'', + ''App Gateways'',\r\n\ttype == ''microsoft.network/frontdoors'', ''Front Doors'',\r\n\ttype + == ''microsoft.network/applicationgatewaywebapplicationfirewallpolicies'', + ''AppGateway Policies'',\r\n\ttype == ''microsoft.network/bastionhosts'', + ''Bastion Hosts'',\r\n\ttype == ''microsoft.network/frontdoorwebapplicationfirewallpolicies'', + ''FrontDoor Policies'',\r\n\ttype == ''microsoft.network/firewallpolicies'', + ''Firewall Policies'',\r\n\ttype == ''microsoft.network/networkintentpolicies'', + ''Network Intent Policies'',\r\n\ttype == ''microsoft.network/trafficmanagerprofiles'', + ''Traffic Manager Profiles'',\r\n\ttype == ''microsoft.network/publicipprefixes'', + ''PublicIP Prefixes'',\r\n\ttype == ''microsoft.network/privatelinkservices'', + ''Private Link'',\r\n\ttype == ''microsoft.network/expressroutecircuits'', + ''Express Route Circuits'',\r\n\ttype =~ ''microsoft.cdn/cdnwebapplicationfirewallpolicies'', + ''CDN Web App Firewall Policies'',\r\n\ttype =~ ''microsoft.cdn/profiles'', + ''CDN Profiles'',\r\n\ttype =~ ''microsoft.cdn/profiles/afdendpoints'', ''CDN + Front Door Endpoints'',\r\n\ttype =~ ''microsoft.cdn/profiles/endpoints'', + ''CDN Endpoints'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| summarize + count() by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Networking + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":4},"id":48,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"Resources\r\n| + where type =~ ''microsoft.network/networksecuritygroups'' and isnull(properties.networkInterfaces) + and isnull(properties.subnets)\r\n| project Resource=id, resourceGroup, subscriptionId, + location","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"NSG","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":12},"id":49,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"Resources\r\n| + where type =~ ''microsoft.network/networksecuritygroups'' and isnull(properties.networkInterfaces) + and isnull(properties.subnets)\r\n| project Resource=id, resourceGroup, subscriptionId, + location","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Unassociated + NSGs","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":12},"id":50,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"Resources\r\n | + where type =~ ''microsoft.network/networksecuritygroups''\r\n | project + id, nsgRules = parse_json(parse_json(properties).securityRules), networksecurityGroupName + = name, subscriptionId, resourceGroup , location\r\n | mvexpand nsgRule + = nsgRules\r\n | project id, location, access=nsgRule.properties.access,protocol=nsgRule.properties.protocol + ,direction=nsgRule.properties.direction,provisioningState= nsgRule.properties.provisioningState + ,priority=nsgRule.properties.priority, \r\n sourceAddressPrefix = nsgRule.properties.sourceAddressPrefix, + \r\n sourceAddressPrefixes = nsgRule.properties.sourceAddressPrefixes,\r\n destinationAddressPrefix + = nsgRule.properties.destinationAddressPrefix, \r\n destinationAddressPrefixes + = nsgRule.properties.destinationAddressPrefixes, \r\n networksecurityGroupName, + networksecurityRuleName = tostring(nsgRule.name), \r\n subscriptionId, + resourceGroup,\r\n destinationPortRanges = nsgRule.properties.destinationPortRanges,\r\n destinationPortRange + = nsgRule.properties.destinationPortRange,\r\n sourcePortRanges = nsgRule.properties.sourcePortRanges,\r\n sourcePortRange + = nsgRule.properties.sourcePortRange\r\n| extend Details = pack_all()\r\n| + project id, location, access, direction, subscriptionId, resourceGroup, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"NSG + Rules","type":"table"}],"title":"Networking","type":"row"},{"collapsed":true,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":4},"id":52,"panels":[{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":9,"x":0,"y":5},"id":54,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources + \r\n| where type =~ ''microsoft.operationalinsights/workspaces''\r\nor type + =~ ''microsoft.insights/components''\r\n| summarize count() by type\r\n| extend + type = case(\r\ntype == ''microsoft.insights/components'', \"Application Insights\",\r\ntype + == ''microsoft.operationalinsights/workspaces'', \"Log Analytics workspaces\",\r\nstrcat(type, + type))","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Workspaces + Overview","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":15,"x":9,"y":5},"id":55,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.insights/''\r\n or type has ''microsoft.alertsmanagement/smartdetectoralertrules''\r\n or + type has ''microsoft.portal/dashboards''\r\n| where type != ''microsoft.insights/components''\r\n| + extend type = case(\r\n \ttype == ''microsoft.insights/workbooks'', \"Workbooks\",\r\n\ttype + == ''microsoft.insights/activitylogalerts'', \"Activity Log Alerts\",\r\n\ttype + == ''microsoft.insights/scheduledqueryrules'', \"Log Search Alerts\",\r\n\ttype + == ''microsoft.insights/actiongroups'', \"Action Groups\",\r\n\ttype == ''microsoft.insights/metricalerts'', + \"Metric Alerts\",\r\n\ttype =~ ''microsoft.alertsmanagement/smartdetectoralertrules'',''Smart + Detection Rules'',\r\n type =~ ''microsoft.insights/webtests'', ''URL Web + Tests'',\r\n type =~ ''microsoft.portal/dashboards'', ''Portal Dashboards'',\r\n type + =~ ''microsoft.insights/datacollectionrules'', ''Data Collection Rules'',\r\n type + =~ ''microsoft.insights/autoscalesettings'', ''Auto Scale Settings'',\r\n type + =~ ''microsoft.insights/alertrules'', ''Alert Rules'',\r\nstrcat(\"Not Translated: + \", type))\r\n| summarize count() by type","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Azure + Monitor Workbooks \u0026 Alerting Resources","type":"stat"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":13},"id":57,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type has ''microsoft.insights/''\r\n or type has ''microsoft.alertsmanagement/smartdetectoralertrules''\r\n or + type has ''microsoft.portal/dashboards''\r\n| where type != ''microsoft.insights/components''\r\n| + extend type = case(\r\n \ttype == ''microsoft.insights/workbooks'', \"Workbooks\",\r\n\ttype + == ''microsoft.insights/activitylogalerts'', \"Activity Log Alerts\",\r\n\ttype + == ''microsoft.insights/scheduledqueryrules'', \"Log Search Alerts\",\r\n\ttype + == ''microsoft.insights/actiongroups'', \"Action Groups\",\r\n\ttype == ''microsoft.insights/metricalerts'', + \"Metric Alerts\",\r\n\ttype =~ ''microsoft.alertsmanagement/smartdetectoralertrules'',''Smart + Detection Rules'',\r\n type =~ ''microsoft.portal/dashboards'', ''Portal + Dashboards'',\r\n\tstrcat(\"Not Translated: \", type))\r\n| extend Enabled + = case(\r\n\ttype =~ ''Smart Detection Rules'', properties.state,\r\n\ttype + != ''Smart Detection Rules'', properties.enabled,\r\n\tstrcat(\"Not Translated: + \", type))\r\n| extend WorkbookType = iif(type =~ ''Workbooks'', properties.category, + '' '')\r\n| extend Details = pack_all()\r\n| project name, type, subscriptionId, + location, resourceGroup, Enabled, WorkbookType, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Workbooks + \u0026 Alerting Resources","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":13},"id":59,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"where + type =~ ''microsoft.operationalinsights/workspaces''\r\n| extend Sku = properties.sku.name\r\n| + extend RetentionInDays = properties.retentionInDays\r\n| extend Details = + pack_all()\r\n| project Workspace=id, resourceGroup, location, subscriptionId, + Sku, RetentionInDays, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Log + Analytics","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":21},"id":56,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"AlertsManagementResources\r\n| + extend AlertStatus = properties.essentials.monitorCondition\r\n| extend AlertState + = properties.essentials.alertState\r\n| extend AlertTime = properties.essentials.startDateTime\r\n| + extend AlertSuppressed = properties.essentials.actionStatus.isSuppressed\r\n| + extend Severity = properties.essentials.severity\r\n| where AlertStatus == + ''Fired''\r\n| extend Details = pack_all()\r\n| project id, name, subscriptionId, + resourceGroup, AlertStatus, AlertState, AlertTime, AlertSuppressed, Severity, + Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Active + Alerts","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"left","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":21},"id":61,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"securityresources\r\n| + where type == \"microsoft.security/securescores\"\r\n| extend subscriptionSecureScore + = round(100 * bin((todouble(properties.score.current))/ todouble(properties.score.max), + 0.001))\r\n| where subscriptionSecureScore \u003e 0\r\n| project subscriptionSecureScore, + subscriptionId\r\n| order by subscriptionSecureScore asc","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Azure + Security Center Secure Store by Subscription","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":29},"id":58,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"where + type =~ ''microsoft.insights/components''\r\n| extend RetentionInDays = properties.RetentionInDays\r\n| + extend IngestionMode = properties.IngestionMode\r\n| extend Details = pack_all()\r\n| + project Resource=id, location, resourceGroup, subscriptionId, IngestionMode, + RetentionInDays, Details","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"App + Monitoring","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":37},"id":60,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"resources\r\n| + where type == \"microsoft.operationsmanagement/solutions\"\r\n| project Solution=plan.name, + Workspace=tolower(tostring(properties.workspaceResourceId)), subscriptionId\r\n\t| + join kind=leftouter(\r\n\t\tresources\r\n\t\t| where type =~ ''microsoft.operationalinsights/workspaces''\r\n\t\t| + project Workspace=tolower(tostring(id)),subscriptionId) on Workspace\r\n| + summarize Solutions = strcat_array(make_list(Solution), \",\") by Workspace, + subscriptionId\r\n| extend AzureSecurityCenter = iif(Solutions has ''Security'',''Enabled'',''Not + Enabled'')\r\n| extend AzureSecurityCenterFree = iif(Solutions has ''SecurityCenterFree'',''Enabled'',''Not + Enabled'')\r\n| extend AzureSentinel = iif(Solutions has \"SecurityInsights\",''Enabled'',''Not + Enabled'')\r\n| extend AzureMonitorVMs = iif(Solutions has \"VMInsights\",''Enabled'',''Not + Enabled'')\r\n| extend ServiceDesk = iif(Solutions has \"ITSM Connector\",''Enabled'',''Not + Enabled'')\r\n| extend AzureAutomation = iif(Solutions has \"AzureAutomation\",''Enabled'',''Not + Enabled'')\r\n| extend ChangeTracking = iif(Solutions has ''ChangeTracking'',''Enabled'',''Not + Enabled'')\r\n| extend UpdateManagement = iif(Solutions has ''Updates'',''Enabled'',''Not + Enabled'')\r\n| extend UpdateCompliance = iif(Solutions has ''WaaSUpdateInsights'',''Enabled'',''Not + Enabled'')\r\n| extend AzureMonitorContainers = iif(Solutions has ''ContainerInsights'',''Enabled'',''Not + Enabled'')\r\n| extend KeyVaultAnalytics = iif(Solutions has ''KeyVaultAnalytics'',''Enabled'',''Not + Enabled'')\r\n| extend SQLHealthCheck = iif(Solutions has ''SQLAssessment'',''Enabled'',''Not + Enabled'')","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Log + Analytics workspaces with enabled Solutions","type":"table"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":45},"id":62,"options":{"showHeader":true},"targets":[{"account":"","azureResourceGraph":{"query":"SecurityResources + \r\n| where type == ''microsoft.security/securescores/securescorecontrols'' + \r\n| extend SecureControl = properties.displayName, unhealthy = properties.unhealthyResourceCount, + currentscore = properties.score.current, maxscore = properties.score.max, + subscriptionId\r\n| project SecureControl , unhealthy, currentscore, maxscore, + subscriptionId","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure + Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Azure + Security Center Secure Controls Score by Controls","type":"table"}],"title":"Monitoring + \u0026 Security","type":"row"}],"refresh":"","schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[{"current":{},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"allValue":null,"current":{},"datasource":"${ds}","definition":"Subscriptions()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Subscription(s)","multi":true,"name":"subscriptions","options":[],"query":"Subscriptions()","refresh":1,"regex":"","skipUrlSync":false,"sort":5,"type":"query"}]},"time":{"from":"now-1h","to":"now"},"title":"Azure + / Resources Overview","uid":"Mtwt2BV7k","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AelNmMApLrv/moX988u92A';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574415.632.440.299041|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/xLERdASnz + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"cluster-detail","url":"/d/xLERdASnz/cluster-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"ClusterDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":16,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + Datasource","description":"For a particular cluster, this widget shows it''s + health timeline - time at which each health state value was reported. For + a group of clusters, it shows the percentage of each health state reported + at a given time.","fieldConfig":{"defaults":{"color":{"mode":"continuous-RdYlGr"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":1,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]}]},"gridPos":{"h":6,"w":24,"x":0,"y":0},"id":14,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"pluginVersion":"8.1.2","targets":[{"account":"$account","backends":[],"customSeriesNaming":"{HealthState} + {ClusterName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricType":"query","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"ClusterHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + HealthState\") | where HealthState == \"Ok\" and ClusterName in (\"$ClusterName\") + | project Count=replacenulls(Count, 0) | zoom Count=sum(Count) by 5m | top + 40 by avg(Count)","refId":"Ok","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true},{"account":"$account","backends":[],"customSeriesNaming":"{HealthState} + {ClusterName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricType":"query","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"ClusterHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + HealthState\") | where HealthState == \"Warning\" and ClusterName in (\"$ClusterName\") + | project Count=replacenulls(Count, 0) | zoom Count=sum(Count) by 5m | top + 40 by avg(Count)","refId":"Warning","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true},{"account":"$account","backends":[],"customSeriesNaming":"{HealthState} + {ClusterName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricType":"query","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"ClusterHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + HealthState\") | where HealthState == \"Error\" and ClusterName in (\"$ClusterName\") + | project Count=replacenulls(Count, 0) | zoom Count=sum(Count) by 5m | top + 40 by avg(Count)","refId":"Error","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"timeFrom":null,"timeShift":null,"title":"Cluster + health timeline","type":"state-timeline"},{"datasource":"Geneva Datasource","description":"Total + number of nodes reporting at least once per health state. A node may be counted + twice if it reported more than one health state during the selected time range.","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"hideFrom":{"legend":false,"tooltip":false,"viz":false}},"decimals":0,"mappings":[]},"overrides":[{"matcher":{"id":"byName","options":"Warning"},"properties":[{"id":"color","value":{"fixedColor":"red","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Error"},"properties":[{"id":"color","value":{"fixedColor":"red","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Ok"},"properties":[{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]}]},"gridPos":{"h":8,"w":12,"x":0,"y":6},"id":17,"options":{"legend":{"displayMode":"list","placement":"bottom"},"pieType":"pie","reduceOptions":{"calcs":["distinctCount"],"fields":"","values":false},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"customSeriesNaming":"{HealthState}","dimension":"","metric":"","metricType":"query","namespace":"ServiceFabric","queryText":"metric(\"NodeHealthState\").samplingTypes(\"DistinctCount_NodeName\").preaggregate(\"By-HealthState-ClusterName\") + | where ClusterName in (\"$clusterName\") | summarize sum=sum(DistinctCount_NodeName) + by HealthState","queryType":"Azure Monitor","refId":"NodeHealthCount","samplingType":"","service":"metrics","subscription":"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc","useBackends":false,"useCustomSeriesNaming":true}],"title":"Nodes + in each health state","type":"piechart"},{"datasource":"Geneva Datasource","description":"Total + number of applications reporting at least once per health state. An application + may be counted twice if it reported more than one health state during the + selected time range.","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"hideFrom":{"legend":false,"tooltip":false,"viz":false}},"decimals":0,"mappings":[]},"overrides":[{"matcher":{"id":"byName","options":"Warning"},"properties":[{"id":"color","value":{"fixedColor":"yellow","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Error"},"properties":[{"id":"color","value":{"fixedColor":"red","mode":"fixed"}}]},{"matcher":{"id":"byName","options":"Ok"},"properties":[{"id":"color","value":{"fixedColor":"green","mode":"fixed"}}]}]},"gridPos":{"h":8,"w":12,"x":12,"y":6},"id":16,"options":{"legend":{"displayMode":"list","placement":"bottom"},"pieType":"pie","reduceOptions":{"calcs":["distinctCount"],"fields":"","values":false},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"customSeriesNaming":"{HealthState}","dimension":"","metric":"","metricType":"query","namespace":"ServiceFabric","queryText":" metric(\"AppHealthState\").samplingTypes(\"DistinctCount_AppName\").preaggregate(\"By-HealthState-ClusterName\") + | where ClusterName in (\"$clusterName\") | summarize sum=sum(DistinctCount_AppName) + by HealthState","queryType":"Azure Monitor","refId":"AppHealthCount","samplingType":"","service":"metrics","subscription":"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc","useBackends":false,"useCustomSeriesNaming":true}],"title":"Applications + in each health state","type":"piechart"},{"datasource":"Geneva Datasource","description":"Shows + the timeline of when the health state was reported as Error by a node. The + nodes shown are the top 10 nodes that reported error most frequently across + the selected cluster.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":1},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"#4a4a4a","value":null},{"color":"red","value":1}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":14},"id":10,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"repeat":null,"targets":[{"account":"$account","backends":[],"customSeriesNaming":"{ClusterName} + {NodeName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","metric":"","metricType":"query","namespace":"ServiceFabric","queryText":"metric(\"NodeHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + NodeName, HealthState\") | where HealthState == \"Error\" | project Count=replacenulls(Count,0) + | zoom Count=max(Count) by 5m | top 10 by avg(Count) desc","queryType":"query","refId":"ErrorTimeline","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Top + 10 Nodes in Error state with their Error timelines","type":"state-timeline"},{"datasource":"Geneva + Datasource","description":"Shows the timeline of when the health state was + reported as Error by an application. The applications shown are the top 10 + applications that reported error most frequently across the selected cluster.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":50,"lineWidth":2},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"#4a4a4a","value":null},{"color":"red","value":1}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":14},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"pluginVersion":"8.1.2","targets":[{"account":"$account","backends":[],"customSeriesNaming":"{ClusterName} + {AppName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","metric":"","metricType":"query","namespace":"ServiceFabric","queryText":"metric(\"AppHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + AppName, HealthState\") | where HealthState == \"Error\" | project Count=replacenulls(Count,0) + | zoom Count=max(Count) by 5m | top 10 by avg(Count) desc","queryType":"query","refId":"ErrorTimeline","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Top + 10 Applications in Error state with their Error timelines","type":"state-timeline"},{"datasource":"Geneva + Datasource","description":"Shows the timeline of when the health state was + reported as Warning by a node. The nodes shown are the top 10 nodes that reported + warning health state most frequently across the selected cluster.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":1},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"#4a4a4a","value":null},{"color":"yellow","value":1}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":23},"id":21,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"customSeriesNaming":"{ClusterName} + {NodeName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","metric":"","metricType":"query","namespace":"ServiceFabric","queryText":"metric(\"NodeHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + NodeName, HealthState\") | where HealthState == \"Warning\" | project Count=replacenulls(Count,0) + | zoom Count=max(Count) by 5m | top 10 by avg(Count) desc","queryType":"query","refId":"WarningTimeline","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Top + 10 Nodes in Warning state with their Warning timelines","type":"state-timeline"},{"datasource":"Geneva + Datasource","description":"Shows the timeline of when the health state was + reported as Warning by an application. The applications shown are the top + 10 applications that reported warning state most frequently across the selected + cluster.","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":50,"lineWidth":2},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"#4a4a4a","value":null},{"color":"yellow","value":1}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":23},"id":20,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"pluginVersion":"8.1.2","targets":[{"account":"$account","backends":[],"customSeriesNaming":"{ClusterName} + {AppName}","dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","metric":"","metricType":"query","namespace":"ServiceFabric","queryText":"metric(\"AppHealthState\").samplingTypes(\"Count\").preaggregate(\"ClusterName, + AppName, HealthState\") | where HealthState == \"Warning\" | project Count=replacenulls(Count,0) + | zoom Count=max(Count) by 5m | top 10 by avg(Count) desc","queryType":"query","refId":"WarningTimeline","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Top + 10 Applications in Warning state with their Warning timelines","type":"state-timeline"}],"refresh":false,"schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"accounts()","description":"The Geneva metrics account + name","error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"account","options":[],"query":"accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":1,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($account, ServiceFabric, ClusterHealthState, + ClusterName)","description":"The name of the cluster you want to see data + for","error":null,"hide":0,"includeAll":true,"label":"Cluster Name","multi":true,"name":"ClusterName","options":[],"query":"dimensionValues($account, + ServiceFabric, ClusterHealthState, ClusterName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"Cluster + Detail","uid":"xLERdASnz","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-o6tY58n5A/mVSL8JgtkBdw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574415.884.439.338585|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/QTVw7iK7z + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"geneva-health","url":"/d/QTVw7iK7z/geneva-health","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-11T22:34:26Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"Health.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"datasource":"Geneva + Datasource","enable":true,"iconColor":"light-blue","name":"Geneva Health Annotations","target":{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Watchdog + Health","isAnnotationsMode":true,"limit":100,"matchAny":false,"metric":"","metricsQueryType":"ui","namespace":"","samplingType":"","selectedWatchdogResourceVar":"$nodeIds","service":"health","tags":[],"type":"dashboard","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":13,"links":[],"panels":[{"datasource":"Geneva + Datasource","gridPos":{"h":21,"w":6,"x":0,"y":0},"id":2,"options":{"monitorNameVar":"$monitorName","monitorVar":"$monitor","orientation":"vertical","resourceHealthVar":"$nodeIds","resourceNameVar":"$selectedRes"},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","service":"health","topologyNodeId":"$res","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Topology","type":"geneva-health-panel"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":0},"mappings":[{"options":{"0":{"color":"red","index":0,"text":"Unhealthy"},"1":{"color":"green","index":1,"text":"Healthy"},"2":{"color":"orange","index":2,"text":"Degraded"}},"type":"value"}],"thresholds":{"mode":"absolute","steps":[{"color":"text","value":null},{"color":"red","value":0},{"color":"green","value":1},{"color":"#EAB839","value":2}]}},"overrides":[]},"gridPos":{"h":7,"w":18,"x":6,"y":0},"id":4,"options":{"alignValue":"left","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Resource + Health","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","selectedResourcesVar":"$nodeIds","service":"health","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}],"title":"Resource + Health History $selectedRes","type":"state-timeline"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds","seriesBy":"last"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"scheme","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"dash":[0,3,3],"fill":"dot"},"lineWidth":2,"pointSize":3,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"area"}},"decimals":0,"mappings":[{"options":{"0":{"color":"red","index":0,"text":"Unhealthy"},"100":{"color":"green","index":2,"text":"Healthy"},"50":{"color":"orange","index":1,"text":"Degraded"}},"type":"value"}],"max":100,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"red","value":null},{"color":"orange","value":50},{"color":"green","value":99}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":7,"w":18,"x":6,"y":7},"id":6,"options":{"legend":{"calcs":["lastNotNull"],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"multi"}},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"percent","healthQueryType":"Watchdog + Health","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","selectedWatchdogResourceVar":"$nodeIds","service":"health","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}],"title":"Watchdog + Health History $selectedRes","type":"timeseries"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":7,"w":18,"x":6,"y":14},"id":8,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"account":"$acc","dimension":"","dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Monitor + Evaluation","metric":"","metricsQueryType":"ui","namespace":"","orderAggFunc":"avg","orderBy":"desc","refId":"A","samplingType":"","selectedMonitorVar":"$monitor","service":"health","showTop":"40","useCustomSeriesNaming":false,"useResourceVars":true}],"title":"Monitor + Evaluation $monitorName","type":"timeseries"}],"schemaVersion":30,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Accounts()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"acc","options":[],"query":"Accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"HealthResources($acc)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Health + Resource","multi":false,"name":"res","options":[],"query":"HealthResources($acc)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{"selected":false,"text":"","value":""},"description":null,"error":null,"hide":2,"includeAll":false,"label":null,"multi":false,"name":"nodeIds","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"description":null,"error":null,"hide":2,"includeAll":false,"label":null,"multi":false,"name":"selectedRes","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"current":{},"hide":2,"includeAll":false,"multi":false,"name":"monitor","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"current":{},"hide":2,"includeAll":false,"multi":false,"name":"monitorName","options":[],"query":"","skipUrlSync":false,"type":"custom"}]},"time":{"from":"now-1h","to":"now"},"timepicker":{},"timezone":"","title":"Geneva + Health","uid":"QTVw7iK7z","version":1}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Herr9s93tAPxiC4Ehz5k3w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574416.109.440.140023|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/icm-example + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"icm.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[{"description":"","label":"IcM + via ADX","name":"DS_ICM_VIA ADX","pluginId":"grafana-azure-data-explorer-datasource","pluginName":"Azure + Data Explorer Datasource","type":"datasource"}],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.1"},{"id":"grafana-azure-data-explorer-datasource","name":"Azure + Data Explorer Datasource","type":"datasource","version":"3.6.1"},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time + series","type":"panel","version":""}],"annotations":{"list":[{"builtIn":1,"datasource":"-- + Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":19,"iteration":1648251431667,"links":[],"liveNow":false,"panels":[{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":22,"panels":[],"title":"About + this dashboard","type":"row"},{"gridPos":{"h":7,"w":5,"x":0,"y":1},"id":24,"options":{"content":"This + dashboard is based on the [IcM canned dashboard](https://lens.msftcloudes.com/#/dashboard/V2%20Dashboard?_g=(ws:ws-icm-business-dashboard-workspace)).\n\nQuestions? + Comments? Please reach out to [us](mailto://mitulkdirs@microsoft.com?subject=IcM%20Canned%20Dashboard%20Feedback).","mode":"markdown"},"pluginVersion":"8.4.1","title":"About + this dashboard","type":"text"},{"gridPos":{"h":7,"w":19,"x":5,"y":1},"id":20,"options":{"content":"1. + Create a new AAD app registration [here - please open in a new tab](https://ms.portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/RegisteredApps)\n\t* + Choose `Single tenant`\n\t* Leave Redirect URI blank\n\t* Copy `Application + (client) ID` and `Tenant ID`\n2. Create a secret for your app registration\n3. + Register this AAD app with IcM [here](https://portal.microsofticm.com/imp/v4/reporting/kustoaccess) + so they know who to reach out if needed\n4. On [ADX web UI](https://dataexplorer.azure.com/clusters/icmcluster), + grant viewer access to the aforementioned AAD app as follows:\n```\n\t.add + database IcMDataWarehouse viewers (''aadapp=your_client_id;your_tenant_id'')\n```\nNote: + this will say that you don''t have rights. To verify that access was indeed + granted, run this command:\n```\n.show database IcMDataWarehouse principals + | where PrincipalFQN contains \"your_client_id\"\n```\n5. Add a new Azure + Data Explorer data source in Grafana using the aforementioned AAD app and + secret. Note that it takes a few hours for the AAD app id to propagate.\n\t* + Cloud: `Azure`\n\t* Cluster URL: `https://icmclusterlb.kustomfa.windows.net/`\n\t* + Tenant ID: your_tenant_id\n\t* Client ID: your_client_id\n\t* Client Secret: + your_client_secret\n\t* Default database: `IcmDataWarehouse`\n\nMore details + [here](https://icmdocs.azurewebsites.net/reporting/kusto.html)","mode":"markdown"},"pluginVersion":"8.4.1","title":"How + to setup IcM as a data source in Grafana","type":"text"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":8},"id":8,"panels":[],"title":"Incident + Volume","type":"row"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"bars","fillOpacity":50,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"normal"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":9},"id":2,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + where isnull(ParentIncidentId) and Status in (''ACTIVE'', ''MITIGATED'', ''RESOLVED'')\n| + project CreateDate, IncidentId, Severity, Status, SourceName, SourceType, + RoutingId, OwningTenantName, IsNoise=iif(IsNoise==0, \"False\", \"True\") + , IsCustomerImpacting=iif(IsCustomerImpacting==0, \"False\", \"True\"), IncidentType, + HowFixed, IncidentSubType, SourceCreateDate, ImpactStartDate, MitigateDate, + ResolveDate\n| summarize count() by bin(CreateDate, 1d), Status\n| order by + CreateDate asc\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"time_series"}],"title":"Incident + Volume Per Status","type":"timeseries"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"bars","fillOpacity":50,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"normal"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":9},"id":5,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + where isnull(ParentIncidentId) and Status in (''ACTIVE'', ''MITIGATED'', ''RESOLVED'')\n| + project CreateDate, IncidentId, Severity=strcat(\"Sev\", tostring(Severity)), + Status, SourceName, SourceType, RoutingId, OwningTenantName, IsNoise=iif(IsNoise==0, + \"False\", \"True\") , IsCustomerImpacting=iif(IsCustomerImpacting==0, \"False\", + \"True\"), IncidentType, HowFixed, IncidentSubType, SourceCreateDate, ImpactStartDate, + MitigateDate, ResolveDate\n| summarize count() by bin(CreateDate, 1d), Severity\n| + order by CreateDate asc\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"time_series"}],"title":"Incident + Volume Per Severity","type":"timeseries"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"bars","fillOpacity":50,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"normal"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":18},"id":3,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + where isnull(ParentIncidentId) and Status in (''ACTIVE'', ''MITIGATED'', ''RESOLVED'')\n| + project CreateDate, IncidentId, Severity, Status, SourceName, SourceType, + RoutingId, OwningTenantName, IsNoise=iif(IsNoise==0, \"False\", \"True\") + , IsCustomerImpacting=iif(IsCustomerImpacting==0, \"False\", \"True\"), IncidentType, + HowFixed, IncidentSubType, SourceCreateDate, ImpactStartDate, MitigateDate, + ResolveDate\n| summarize count() by bin(CreateDate, 1d), SourceType\n| order + by CreateDate asc\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"time_series"}],"title":"Incident + Volume Per Alert Source Type","type":"timeseries"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":24,"x":0,"y":27},"id":6,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true},"pluginVersion":"8.4.1","targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + where isnull(ParentIncidentId) and Status in (''ACTIVE'', ''MITIGATED'', ''RESOLVED'')\n| + project IncidentId, CreateDate, Severity, Status, SourceName, SourceType, + RoutingId, OwningTenantName, IsNoise=iif(IsNoise==0, \"False\", \"True\") + , IsCustomerImpacting=iif(IsCustomerImpacting==0, \"False\", \"True\"), IncidentType, + HowFixed, IncidentSubType, SourceCreateDate, ImpactStartDate, MitigateDate, + ResolveDate\n| sort by IncidentId asc\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"table"}],"title":"Incident + Details","type":"table"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":36},"id":10,"panels":[],"title":"TTX","type":"row"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"bars","fillOpacity":50,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"normal"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":37},"id":16,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + project IncidentId, Lens_IngestionTime, OwningTenantName, Severity, OwningTeamId\n| + join kind= inner(Notifications | where $__timeFilter(CreateDate) | summarize + (Lens_IngestionTime,PrimaryTarget, PrimaryTargetType, IncidentId, RequestType)=argmax(Lens_IngestionTime, + PrimaryTarget, PrimaryTargetType, IncidentId, RequestType) by NotificationId)\non + $left.IncidentId == $right.IncidentId\n| join kind=inner (NotificationActions + | where $__timeFilter(SendDate))\non $left.NotificationId == $right.NotificationId + \n| where isnotnull(SendDate) and Status in~ (''COMPLETED'')\n| summarize + (Lens_IngestionTime, NotificationId, SendDate, TeamId, IncidentId, ServiceType, + PrimaryTargetType, RequestType,Severity)=argmax(Lens_IngestionTime, NotificationId, + SendDate, OwningTeamId, IncidentId, ServiceType, PrimaryTargetType, RequestType, + Severity) by NotificationActionId \n| join kind=inner (Teams | summarize (Lens_IngestionTime, + TeamName, TenantName)=argmax(Lens_IngestionTime, TeamName, TenantName) by + TeamId | project TeamId, TeamName, TenantName)\non $left.TeamId == $right.TeamId\n| + project SendDate, NotificationId, IncidentId, TeamName, ServiceType, PrimaryTargetType, + RequestType, TenantName, Severity\n| summarize count() by bin(SendDate, 1d), + ServiceType\n| sort by SendDate asc\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"time_series"}],"title":"Notification + by Contact Type","type":"timeseries"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":46},"id":12,"panels":[],"title":"Notification + Volume","type":"row"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"bars","fillOpacity":50,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"normal"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":47},"id":13,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + project IncidentId, Lens_IngestionTime, OwningTenantName, Severity, OwningTeamId\n| + join kind= inner(Notifications | where $__timeFilter(CreateDate) | summarize + (Lens_IngestionTime,PrimaryTarget, PrimaryTargetType, IncidentId, RequestType)=argmax(Lens_IngestionTime, + PrimaryTarget, PrimaryTargetType, IncidentId, RequestType) by NotificationId)\non + $left.IncidentId == $right.IncidentId\n| join kind=inner (NotificationActions + | where $__timeFilter(SendDate))\non $left.NotificationId == $right.NotificationId + \n| where isnotnull(SendDate) and Status in~ (''COMPLETED'')\n| summarize + (Lens_IngestionTime, NotificationId, SendDate, TeamId, IncidentId, ServiceType, + PrimaryTargetType, RequestType,Severity)=argmax(Lens_IngestionTime, NotificationId, + SendDate, OwningTeamId, IncidentId, ServiceType, PrimaryTargetType, RequestType, + Severity) by NotificationActionId \n| join kind=inner (Teams | summarize (Lens_IngestionTime, + TeamName, TenantName)=argmax(Lens_IngestionTime, TeamName, TenantName) by + TeamId | project TeamId, TeamName, TenantName)\non $left.TeamId == $right.TeamId\n| + project SendDate, NotificationId, IncidentId, TeamName, ServiceType, PrimaryTargetType, + RequestType, TenantName, Severity\n| summarize count() by bin(SendDate, 1d), + ServiceType\n| sort by SendDate asc\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"time_series"}],"title":"Notification + by Contact Type","type":"timeseries"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"bars","fillOpacity":50,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"normal"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":47},"id":14,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single","sort":"none"}},"targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + project IncidentId, Lens_IngestionTime, OwningTenantName, Severity, OwningTeamId\n| + join kind= inner(Notifications | where $__timeFilter(CreateDate) | summarize + (Lens_IngestionTime,PrimaryTarget, PrimaryTargetType, IncidentId, RequestType)=argmax(Lens_IngestionTime, + PrimaryTarget, PrimaryTargetType, IncidentId, RequestType) by NotificationId)\non + $left.IncidentId == $right.IncidentId\n| join kind=inner (NotificationActions + | where $__timeFilter(SendDate))\non $left.NotificationId == $right.NotificationId + \n| where isnotnull(SendDate) and Status in~ (''COMPLETED'')\n| summarize + (Lens_IngestionTime, NotificationId, SendDate, TeamId, IncidentId, ServiceType, + PrimaryTargetType, RequestType,Severity)=argmax(Lens_IngestionTime, NotificationId, + SendDate, OwningTeamId, IncidentId, ServiceType, PrimaryTargetType, RequestType, + Severity) by NotificationActionId \n| join kind=inner (Teams | summarize (Lens_IngestionTime, + TeamName, TenantName)=argmax(Lens_IngestionTime, TeamName, TenantName) by + TeamId | project TeamId, TeamName, TenantName)\non $left.TeamId == $right.TeamId\n| + project SendDate, NotificationId, IncidentId, TeamName, ServiceType, PrimaryTargetType, + RequestType, TenantName, Severity\n| summarize count() by bin(SendDate, 1d), + RequestType\n| sort by SendDate asc\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"time_series"}],"title":"Notification + by Request Type","type":"timeseries"},{"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","displayMode":"auto"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":9,"w":24,"x":0,"y":56},"id":15,"options":{"footer":{"fields":"","reducer":["sum"],"show":false},"showHeader":true},"pluginVersion":"8.4.1","targets":[{"database":"IcmDataWarehouse","expression":{"groupBy":{"expressions":[],"type":"and"},"reduce":{"expressions":[],"type":"and"},"where":{"expressions":[],"type":"and"}},"pluginVersion":"3.5.0","query":"IncidentsSnapshotV2() + \n| where $__timeFilter(CreateDate)\n| where OwningTenantName == \"$svc\"\n| + project IncidentId, Lens_IngestionTime, OwningTenantName, Severity, OwningTeamId\n| + join kind= inner(Notifications | where $__timeFilter(CreateDate) | summarize + (Lens_IngestionTime,PrimaryTarget, PrimaryTargetType, IncidentId, RequestType)=argmax(Lens_IngestionTime, + PrimaryTarget, PrimaryTargetType, IncidentId, RequestType) by NotificationId)\non + $left.IncidentId == $right.IncidentId\n| join kind=inner (NotificationActions + | where $__timeFilter(SendDate))\non $left.NotificationId == $right.NotificationId + \n| where isnotnull(SendDate) and Status in~ (''COMPLETED'')\n| summarize + (Lens_IngestionTime, NotificationId, SendDate, TeamId, IncidentId, ServiceType, + PrimaryTargetType, RequestType,Severity)=argmax(Lens_IngestionTime, NotificationId, + SendDate, OwningTeamId, IncidentId, ServiceType, PrimaryTargetType, RequestType, + Severity) by NotificationActionId \n| join kind=inner (Teams | summarize (Lens_IngestionTime, + TeamName, TenantName)=argmax(Lens_IngestionTime, TeamName, TenantName) by + TeamId | project TeamId, TeamName, TenantName)\non $left.TeamId == $right.TeamId\n| + project NotificationId, IncidentId, SendDate, TeamName, ServiceType, PrimaryTargetType, + RequestType, TenantName, Severity\n","querySource":"raw","rawMode":true,"refId":"A","resultFormat":"table"}],"title":"Notification + Details","type":"table"}],"refresh":"","schemaVersion":35,"style":"dark","tags":[],"templating":{"list":[{"current":{},"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA + ADX}"},"definition":"Tenants | distinct TenantName","hide":0,"includeAll":false,"label":"Service","multi":false,"name":"svc","options":[],"query":"Tenants + | distinct TenantName","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-90d","to":"now"},"timepicker":{},"timezone":"","title":"IcM + Canned Dashboard","uid":"icm-example","version":2,"weekStart":""}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OcSlyHEy4s8iPLp8br1wDw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574416.281.436.303403|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/sVKyjvpnz + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"IncomingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":21,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"Rate\")\n\n| + top 40 by avg(Rate) desc\n","refId":"A","samplingType":"Rate","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + RPS","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":0,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":9},"id":4,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"Count\")\n\n| + top 40 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + Request Count","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":9},"id":5,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiSuccessLatency","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiSuccessLatency\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + Avg Latency (ms)","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":18},"id":6,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"API + Reliability","type":"timeseries"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":18},"id":7,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"Rate\")\n\n| + top 40 by avg(Rate) desc\n","refId":"A","samplingType":"Rate","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"API + RPS","type":"timeseries"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"0","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":27},"id":8,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"RoleInstance-CallerName-OperationName","dimensionFilterOperators":["in","in","in","in","in"],"dimensionFilterValues":[],"dimensionFilters":["CallerName","Environment","OperationName","Role","RoleInstance"],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiSuccessLatency","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiSuccessLatency\").dimensions(\"CallerName\", + \"Environment\", \"OperationName\", \"Role\", \"RoleInstance\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"API + Success Latency","type":"timeseries"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":12,"w":24,"x":0,"y":36},"id":9,"options":{"orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"showThresholdLabels":false,"showThresholdMarkers":true,"text":{}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Non-index","dimensionFilterOperators":["in"],"dimensionFilterValues":[[]],"dimensionFilters":["OperationName"],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\IncomingApiRequests","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiRequests\").dimensions(\"OperationName\").samplingTypes(\"Count\")\n\n| + top 1000 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"API + Requests","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"gauge"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":12,"w":24,"x":0,"y":48},"id":10,"options":{"orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"showThresholdLabels":false,"showThresholdMarkers":true,"text":{}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Non-index","dimensionFilterOperators":["in","in"],"dimensionFilterValues":[[]],"dimensionFilters":["OperationName","Environment"],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\IncomingApiSuccessLatency","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiSuccessLatency\").dimensions(\"OperationName\", + \"Environment\").samplingTypes(\"Count\")\n\n| top 1000 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"API + Latency","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"gauge"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":60},"id":11,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\IncomingApiErrorCount","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiErrorCount\").samplingTypes(\"Count\")\n\n| + top 40 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"Error + Code Summary","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"stat"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":60},"id":12,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\IncomingApiErrorCount","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiErrorCount\").samplingTypes(\"Count\")\n\n| + top 40 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"Error + Code Summary","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"timeseries"}],"schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Accounts()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"Account","options":[],"query":"Accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Namespaces($Account)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Namespace","multi":false,"name":"Namespace","options":[],"query":"Namespaces($Account)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Metrics($Account, $Namespace)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Metric","multi":false,"name":"Metric","options":[],"query":"Metrics($Account, + $Namespace)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, Role)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Role","multi":true,"name":"Role","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, Role)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, RoleInstance)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Role + Instance","multi":true,"name":"RoleInstance","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, RoleInstance)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, OperationName)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Operation + Name","multi":true,"name":"OperationName","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, OperationName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, Environment)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Environment","multi":true,"name":"Environment","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, Environment)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, CallerName)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Caller + Name","multi":true,"name":"CallerName","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, CallerName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"Incoming + Service QoS","uid":"sVKyjvpnz","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hsPgXM0pvxclllOXXLuEdw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574416.505.441.148762|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/_sKhXTH7z + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"node-detail","url":"/d/_sKhXTH7z/node-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"NodeDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":18,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + Datasource","description":"For a particular cluster and an application, this + widget shows it''s health timeline - time when the application sent Ok, Warning + and Error as it''s health status","fieldConfig":{"defaults":{"color":{"mode":"continuous-RdYlGr"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":1,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]}]},"gridPos":{"h":13,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"dimension":"ClusterName, + NodeName, HealthState","dimensionFilterOperators":["in","in","in"],"dimensionFilterValues":[null,["Ok"]],"dimensionFilters":["ClusterName","HealthState","NodeName"],"groupByUnit":"m","groupByValue":"5","healthQueryType":"Topology","metric":"NodeHealthState","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"NodeHealthState\").dimensions(\"ClusterName\", + \"HealthState\", \"NodeName\")\n .samplingTypes(\"Count\") | top 40 by + avg(Count) desc | where HealthState in (\"Ok\") | zoom sum_Count=sum(Count) + by 5m","refId":"A","resAggFunc":"sum","samplingType":"Count","service":"metrics","subscription":"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc","useBackends":false,"useCustomSeriesNaming":false}],"title":"Node + Health Timeline","type":"state-timeline"},{"datasource":"Geneva Datasource","description":"Average + CPU usage for each node across the selected clusters","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"line+area"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"#EAB839","value":65},{"color":"red","value":85}]},"unit":"percent"},"overrides":[]},"gridPos":{"h":10,"w":12,"x":0,"y":13},"id":4,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","metric":"\\Process(FabricDCA)\\% + Processor Time","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"\\\\Processor(_Total)\\\\% + Processor Time\").samplingTypes(\"NullableAverage\").preaggregate(\"ClusterName, + NodeName\") | where ClusterName in (\"$ClusterName\") and NodeName in (\"$NodeName\")","refId":"A","samplingType":"NullableAverage","service":"metrics","subscription":"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc","useBackends":false,"useCustomSeriesNaming":false}],"title":"CPU + usage for Nodes","type":"timeseries"},{"datasource":"Geneva Datasource","description":"Average + available memory in bytes for each node across all clusters","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"area"}},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"#EAB839","value":25},{"color":"red","value":65}]},"unit":"decbytes"},"overrides":[]},"gridPos":{"h":10,"w":12,"x":12,"y":13},"id":6,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","metric":"","metricsQueryType":"query","namespace":"ServiceFabric","queryText":"metric(\"\\\\Memory\\\\Available + Bytes\").samplingTypes(\"NullableAverage\").preaggregate(\"By-ClusterName-NodeName\").resolution(1m) + | where ClusterName in (\"$ClusterName\") and NodeName in (\"$NodeName\") + | top 10 by avg(NullableAverage) asc","refId":"A","samplingType":"","service":"metrics","subscription":"f7152080-b4e8-47ee-9c85-7f1d0e6b72dc","useBackends":false,"useCustomSeriesNaming":false}],"title":"Available + memory for nodes","type":"timeseries"}],"schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"accounts()","description":"The Geneva metrics account + name","error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"account","options":[],"query":"accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($account, ServiceFabric, NodeHealthState, + ClusterName)","description":"The name of the cluster you want to see data + for","error":null,"hide":0,"includeAll":false,"label":"Cluster Name","multi":true,"name":"ClusterName","options":[],"query":"dimensionValues($account, + ServiceFabric, NodeHealthState, ClusterName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($account, ServiceFabric, NodeHealthState, + NodeName)","description":"Node you want to see data for","error":null,"hide":0,"includeAll":false,"label":"Node + Name","multi":true,"name":"NodeName","options":[],"query":"dimensionValues($account, + ServiceFabric, NodeHealthState, NodeName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"Node + Detail","uid":"_sKhXTH7z","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zWnMy9J13LekunGVl0UJeg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574416.726.440.635100|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6naEwcp7z + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"OutgoingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":15,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"RequestRate\")\n\n| + top 40 by avg(RequestRate) desc\n","refId":"A","samplingType":"RequestRate","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + RPS","transformations":[],"type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":0,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":9},"id":4,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"Count\")\n\n| + top 40 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + Request Count","transformations":[],"type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":9},"id":5,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiSuccessLatency","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiSuccessLatency\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall + Avg Latency (ms)","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":18},"id":6,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"ROLEINSTANCE-DEPENDENCYNAME-DEPENDENCYOPERATIONNAME","dimensionFilterOperators":["in","in","in","in","in"],"dimensionFilterValues":[],"dimensionFilters":["DependencyName","DependencyOperationName","Environment","Role","RoleInstance"],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").dimensions(\"DependencyName\", + \"DependencyOperationName\", \"Environment\", \"Role\", \"RoleInstance\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"API + Reliability","type":"timeseries"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":18},"id":7,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"ROLEINSTANCE-DEPENDENCYNAME-DEPENDENCYOPERATIONNAME","dimensionFilterOperators":["in","in","in","in","in"],"dimensionFilterValues":[],"dimensionFilters":["DependencyName","DependencyOperationName","Environment","Role","RoleInstance"],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").dimensions(\"DependencyName\", + \"DependencyOperationName\", \"Environment\", \"Role\", \"RoleInstance\").samplingTypes(\"RequestRate\")\n\n| + top 40 by avg(RequestRate) desc\n","refId":"A","samplingType":"RequestRate","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"API + RPS","type":"timeseries"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineStyle":{"fill":"solid"},"lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"always","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"noValue":"0","thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":27},"id":8,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiSuccessLatency","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiSuccessLatency\").samplingTypes(\"NullableAverage\")\n\n| + top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"API + Success Latency","type":"timeseries"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":24,"x":0,"y":36},"id":9,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Non-index","dimensionFilterOperators":["in"],"dimensionFilterValues":[[]],"dimensionFilters":["DependencyOperationName"],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").dimensions(\"DependencyOperationName\").samplingTypes(\"Average\")\n\n| + top 40 by avg(Average) desc\n","refId":"A","samplingType":"Average","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"API + Reliability","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"stat"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":24,"x":0,"y":45},"id":10,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Non-index","dimensionFilterOperators":["in"],"dimensionFilterValues":[[]],"dimensionFilters":["DependencyOperationName"],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").dimensions(\"DependencyOperationName\").samplingTypes(\"RequestRate\")\n\n| + top 40 by avg(RequestRate) desc\n","refId":"A","samplingType":"RequestRate","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"API + PRS","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"stat"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":53},"id":11,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["sum"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\OutgoingApiErrorCount","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiErrorCount\").samplingTypes(\"Count\")\n\n| + top 40 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"Error + Code Summary","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"stat"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":53},"id":12,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","hide":false,"metric":"StandingQuery\\OutgoingApiErrorCount","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiErrorCount\").samplingTypes(\"Count\")\n\n| + top 40 by avg(Count) desc\n","refId":"A","samplingType":"Count","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"timeFrom":null,"timeShift":null,"title":"Error + Code Summary","transformations":[{"id":"configFromData","options":{"configRefId":"A","mappings":[{"fieldName":"time","handlerKey":"__ignore","reducerId":"lastNotNull"},{"fieldName":"Count + microsoft.support.community.portal.controllers.threadcontroller.viewthread","handlerKey":"field.name","reducerId":"mean"},{"fieldName":"Count + Thread.ViewThread","handlerKey":"field.name","reducerId":"mean"}]}}],"type":"timeseries"}],"schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Accounts()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"Account","options":[],"query":"Accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Namespaces($Account)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Namespace","multi":false,"name":"Namespace","options":[],"query":"Namespaces($Account)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"Metrics($Account, $Namespace)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Metric","multi":false,"name":"Metric","options":[],"query":"Metrics($Account, + $Namespace)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, Role)","description":null,"error":{"config":{"data":null,"headers":{"Accept":"application/json","Content-Type":"application/json","Target":"https://prod5.prod.microsoftmetrics.com/user-api/v2/hint/tophints/monitoringAccount/AnswersUIProd/metricNamespace/ApplicationMetrics/metric/StandingQuery%255COutgoingApiReliability/startTimeUtcMillis/1637794466338/endTimeUtcMillis/1637798066338/top/500000/Role/{{*}}/RoleInstance/All/DependencyOperationName/All/Environment/All/DependencyName/N/DependencyName/o/DependencyName/n/DependencyName/e/Role/value","X-Grafana-Org-Id":1},"hideFromInspector":false,"method":"GET","retry":0,"url":"api/datasources/proxy/1/geneva/dimensionValues"},"data":{"error":"Bad + Request","message":"Bad Request","response":"Bad Request"},"message":"Bad + Request","status":400,"statusText":"Bad Request"},"hide":0,"includeAll":true,"label":"Role","multi":true,"name":"Role","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, Role)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, RoleInstance)","description":null,"error":{"config":{"data":null,"headers":{"Accept":"application/json","Content-Type":"application/json","Target":"https://prod5.prod.microsoftmetrics.com/user-api/v2/hint/tophints/monitoringAccount/AnswersUIProd/metricNamespace/ApplicationMetrics/metric/StandingQuery%255COutgoingApiReliability/startTimeUtcMillis/1637794466338/endTimeUtcMillis/1637798066338/top/500000/Role/All/RoleInstance/{{*}}/DependencyOperationName/All/Environment/All/DependencyName/N/DependencyName/o/DependencyName/n/DependencyName/e/RoleInstance/value","X-Grafana-Org-Id":1},"hideFromInspector":false,"method":"GET","retry":0,"url":"api/datasources/proxy/1/geneva/dimensionValues"},"data":{"error":"Bad + Request","message":"Bad Request","response":"Bad Request"},"message":"Bad + Request","status":400,"statusText":"Bad Request"},"hide":0,"includeAll":true,"label":"Role + Instance","multi":true,"name":"RoleInstance","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, RoleInstance)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, DependencyOperationName)","description":null,"error":{"config":{"data":null,"headers":{"Accept":"application/json","Content-Type":"application/json","Target":"https://prod5.prod.microsoftmetrics.com/user-api/v2/hint/tophints/monitoringAccount/AnswersUIProd/metricNamespace/ApplicationMetrics/metric/StandingQuery%255COutgoingApiReliability/startTimeUtcMillis/1637794466338/endTimeUtcMillis/1637798066338/top/500000/Role/All/RoleInstance/All/DependencyOperationName/{{*}}/Environment/All/DependencyName/N/DependencyName/o/DependencyName/n/DependencyName/e/DependencyOperationName/value","X-Grafana-Org-Id":1},"hideFromInspector":false,"method":"GET","retry":0,"url":"api/datasources/proxy/1/geneva/dimensionValues"},"data":{"error":"Bad + Request","message":"Bad Request","response":"Bad Request"},"message":"Bad + Request","status":400,"statusText":"Bad Request"},"hide":0,"includeAll":true,"label":"Dependency + Operation Name","multi":true,"name":"DependencyOperationName","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, DependencyOperationName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, Environment)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Environment","multi":true,"name":"Environment","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, Environment)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, DependencyName)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Dependency + Name","multi":true,"name":"DependencyName","options":[],"query":"dimensionValues($Account, + $Namespace, $Metric, DependencyName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-1h","to":"now"},"timepicker":{},"timezone":"","title":"Outgoing + Service QoS","uid":"6naEwcp7z","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hA1aPi1Kr1V0yOA9jYs14w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:15 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574416.903.435.887671|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/GIgvhSV7z + response: + body: + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"service-fabric-application-overview\",\"url\":\"/d/GIgvhSV7z/service-fabric-application-overview\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:26Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":12,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"ServiceFabricApplicationOverview.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, + 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"target\":{\"limit\":100,\"matchAny\":false,\"tags\":[],\"type\":\"dashboard\"},\"type\":\"dashboard\"}]},\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":17,\"links\":[{\"asDropdown\":true,\"icon\":\"external + link\",\"includeVars\":true,\"keepTime\":true,\"tags\":[],\"targetBlank\":true,\"title\":\"New + link\",\"tooltip\":\"\",\"type\":\"dashboards\",\"url\":\"\"}],\"panels\":[{\"datasource\":\"Geneva + Datasource\",\"description\":\"Total number of clusters reporting at least + once per health state. A cluster may be counted twice if it reported more + than one health state during the selected time range.\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false}},\"links\":[],\"mappings\":[]},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Error\"},\"properties\":[{\"id\":\"color\",\"value\":{\"fixedColor\":\"red\",\"mode\":\"fixed\"}}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Warning\"},\"properties\":[{\"id\":\"color\",\"value\":{\"fixedColor\":\"yellow\",\"mode\":\"fixed\"}}]},{\"matcher\":{\"id\":\"byName\",\"options\":\"Ok\"},\"properties\":[{\"id\":\"color\",\"value\":{\"fixedColor\":\"green\",\"mode\":\"fixed\"}}]}]},\"gridPos\":{\"h\":9,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"links\":[],\"options\":{\"legend\":{\"displayMode\":\"list\",\"placement\":\"bottom\"},\"pieType\":\"donut\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"tooltip\":{\"mode\":\"single\"}},\"pluginVersion\":\"8.0.0-beta3\",\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{HealthState}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"ServiceFabric\",\"queryText\":\"metric(\\\"ClusterHealthState\\\").samplingTypes(\\\"DistinctCount_ClusterName\\\").preaggregate(\\\"By-HealthState\\\") + \\n| zoom Sum=sum(DistinctCount_ClusterName) by 5m\",\"refId\":\"ClusterHealth\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"Clusters + in each health state\",\"type\":\"piechart\"},{\"cards\":{\"cardPadding\":null,\"cardRound\":null},\"color\":{\"cardColor\":\"#b4ff00\",\"colorScale\":\"sqrt\",\"colorScheme\":\"interpolateYlOrRd\",\"exponent\":0.8,\"max\":2,\"min\":0,\"mode\":\"spectrum\"},\"dataFormat\":\"tsbuckets\",\"datasource\":\"Geneva + Datasource\",\"description\":\"Shows the top 10 clusters with most missing + values for cluster health. Note that clusters which have reported their health + at least once in the given time range will be shown. Missing heartbeats are + shown in red. ClusterHealthState metric is emitted every 5 minutes by default. + Click on the chart to see more information about a particular cluster.\",\"gridPos\":{\"h\":9,\"w\":12,\"x\":12,\"y\":0},\"heatmap\":{},\"hideZeroBuckets\":false,\"highlightCards\":true,\"id\":3,\"legend\":{\"show\":false},\"pluginVersion\":\"8.0.0-beta3\",\"reverseYBuckets\":false,\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{ClusterName}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"ServiceFabric\",\"queryText\":\"metric(\\\"ClusterHealthState\\\").dimensions(\\\"ClusterName\\\").samplingTypes(\\\"Count\\\")\\n| + zoom Count = sum(Count) by 10m\",\"refId\":\"ClusterHeartbeats\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"title\":\"Top + 10 Clusters with missing heart beats\",\"tooltip\":{\"show\":true,\"showHistogram\":false},\"type\":\"heatmap\",\"xAxis\":{\"show\":true},\"xBucketNumber\":null,\"xBucketSize\":\"\",\"yAxis\":{\"decimals\":null,\"format\":\"string\",\"logBase\":1,\"max\":null,\"min\":null,\"show\":true,\"splitFactor\":null},\"yBucketBound\":\"auto\",\"yBucketNumber\":null,\"yBucketSize\":null},{\"datasource\":\"Geneva + Datasource\",\"description\":\"Provides a list of clusters sending OK as their + health state. Click on a particular cluster name to know more.\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"axisLabel\":\"\",\"axisPlacement\":\"auto\",\"barAlignment\":0,\"drawStyle\":\"line\",\"fillOpacity\":10,\"gradientMode\":\"none\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"never\",\"spanNulls\":true,\"stacking\":{\"group\":\"A\",\"mode\":\"normal\"},\"thresholdsStyle\":{\"mode\":\"off\"}},\"links\":[{\"targetBlank\":true,\"title\":\"Cluster + Detail\",\"url\":\"/d/xLERdASnz/cluster-detail?orgId=1\\u0026${env:queryparam}\\u0026${account:queryparam}\\u0026${__field.name}\"}],\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[]},\"gridPos\":{\"h\":9,\"w\":8,\"x\":0,\"y\":9},\"id\":4,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"multi\"}},\"pluginVersion\":\"8.1.2\",\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{ClusterName}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"ServiceFabric\",\"queryText\":\"metric(\\\"ClusterHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n| where HealthState == + \\\"OK\\\"\\n| project Count = replacenulls(Count, 0)\\n| zoom Count = sum(Count) + by 5m\",\"refId\":\"OkTimeline\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"timeFrom\":null,\"timeShift\":null,\"title\":\"Clusters + in OK state\",\"type\":\"timeseries\"},{\"datasource\":\"Geneva Datasource\",\"description\":\"Provides + a list of clusters sending warning as their health state. Click on a particular + cluster in the legend to know more.\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"axisLabel\":\"\",\"axisPlacement\":\"auto\",\"barAlignment\":0,\"drawStyle\":\"line\",\"fillOpacity\":10,\"gradientMode\":\"none\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"never\",\"spanNulls\":true,\"stacking\":{\"group\":\"A\",\"mode\":\"normal\"},\"thresholdsStyle\":{\"mode\":\"off\"}},\"links\":[{\"targetBlank\":true,\"title\":\"Cluster + Detail\",\"url\":\"/d/xLERdASnz/cluster-detail?orgId=1\\u0026${env:queryparam}\uFEFF\\u0026${account:queryparam}\\u0026${__field.name}\"}],\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[]},\"gridPos\":{\"h\":9,\"w\":8,\"x\":8,\"y\":9},\"id\":11,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"multi\"}},\"pluginVersion\":\"8.1.2\",\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{ClusterName}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"ServiceFabric\",\"queryText\":\"metric(\\\"ClusterHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n| where HealthState == + \\\"Warning\\\"\\n| project Count = replacenulls(Count, 0)\\n| zoom Count + = sum(Count) by 5m\",\"refId\":\"WarningTimeline\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"timeFrom\":null,\"timeShift\":null,\"title\":\"Clusters + in Warning state\",\"type\":\"timeseries\"},{\"datasource\":\"Geneva Datasource\",\"description\":\"Provides + a list of clusters sending Error as their health state. Click on a particular + cluster name to know more.\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"palette-classic\"},\"custom\":{\"axisLabel\":\"\",\"axisPlacement\":\"auto\",\"barAlignment\":0,\"drawStyle\":\"line\",\"fillOpacity\":10,\"gradientMode\":\"none\",\"hideFrom\":{\"legend\":false,\"tooltip\":false,\"viz\":false},\"lineInterpolation\":\"linear\",\"lineWidth\":1,\"pointSize\":5,\"scaleDistribution\":{\"type\":\"linear\"},\"showPoints\":\"never\",\"spanNulls\":true,\"stacking\":{\"group\":\"A\",\"mode\":\"normal\"},\"thresholdsStyle\":{\"mode\":\"off\"}},\"links\":[{\"targetBlank\":true,\"title\":\"Cluster + Detail\",\"url\":\"http://localhost:3000/d/xLERdASnz/cluster-detail?orgId=1\\u0026${env:queryparam}\\u0026${account:queryparam}\\u0026${__field.name}\"}],\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[]},\"gridPos\":{\"h\":9,\"w\":8,\"x\":16,\"y\":9},\"id\":10,\"options\":{\"legend\":{\"calcs\":[],\"displayMode\":\"list\",\"placement\":\"bottom\"},\"tooltip\":{\"mode\":\"multi\"}},\"pluginVersion\":\"8.1.2\",\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{ClusterName}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"ServiceFabric\",\"queryText\":\"metric(\\\"ClusterHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n| where HealthState == + \\\"Error\\\"\\n| project Count = replacenulls(Count, 0)\\n| zoom Count = + sum(Count) by 5m\",\"refId\":\"ErrorTimeline\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"timeFrom\":null,\"timeShift\":null,\"title\":\"Clusters + in Error state\",\"type\":\"timeseries\"},{\"cards\":{\"cardPadding\":null,\"cardRound\":null},\"color\":{\"cardColor\":\"#b4ff00\",\"colorScale\":\"sqrt\",\"colorScheme\":\"interpolateRdYlGn\",\"exponent\":0.5,\"max\":3,\"min\":0,\"mode\":\"spectrum\"},\"dataFormat\":\"tsbuckets\",\"datasource\":\"Geneva + Datasource\",\"description\":\"Timeline of health state of nodes indicated + by Error - red, Warning - yellow, OK - green.\",\"gridPos\":{\"h\":9,\"w\":12,\"x\":0,\"y\":18},\"heatmap\":{},\"hideZeroBuckets\":true,\"highlightCards\":true,\"id\":7,\"legend\":{\"show\":false},\"links\":[],\"pluginVersion\":\"8.0.0-beta3\",\"reverseYBuckets\":false,\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{NodeName}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"ServiceFabric\",\"queryText\":\"metric(\\\"NodeHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"NodeName\\\", \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n| where + HealthState == \\\"OK\\\" \\n| summarize OK = max(Count) by NodeName\\n| join + kind=fullouter (\\n metric(\\\"NodeHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"NodeName\\\", \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n | + where HealthState == \\\"Warning\\\"\\n | summarize Warning = max(Count) + by NodeName\\n)\\n| join kind=fullouter (\\n metric(\\\"NodeHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"NodeName\\\", \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n | + where HealthState == \\\"Error\\\"\\n | summarize Error = max(Count) by + NodeName\\n)\\n| project NodeHealthValues = foreach(a in OK, b in Warning, + c in Error) =\\u003e iif(isnull(c), iif(isnull(b), iif(isnull(a), 0, 1), 2), + 3)\\n| summarize NodeHealthSummary = max(NodeHealthValues) by NodeName\\n| + zoom NodeHealthReduced = max(NodeHealthSummary) by 15m | top 10 by avg(NodeHealthReduced)\",\"refId\":\"NodeTimelines\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"timeFrom\":null,\"timeShift\":null,\"title\":\"Top + 10 unhealthy nodes across all clusters\",\"tooltip\":{\"show\":true,\"showHistogram\":false},\"type\":\"heatmap\",\"xAxis\":{\"show\":true},\"xBucketNumber\":null,\"xBucketSize\":null,\"yAxis\":{\"decimals\":null,\"format\":\"short\",\"logBase\":1,\"max\":null,\"min\":null,\"show\":true,\"splitFactor\":null},\"yBucketBound\":\"auto\",\"yBucketNumber\":null,\"yBucketSize\":null},{\"cards\":{\"cardPadding\":null,\"cardRound\":null},\"color\":{\"cardColor\":\"#b4ff00\",\"colorScale\":\"sqrt\",\"colorScheme\":\"interpolateRdYlGn\",\"exponent\":0.5,\"max\":3,\"min\":0,\"mode\":\"spectrum\"},\"dataFormat\":\"tsbuckets\",\"datasource\":\"Geneva + Datasource\",\"description\":\"Timeline of health state of applications indicated + by Error - red, Warning - yellow, OK - green.\",\"gridPos\":{\"h\":9,\"w\":12,\"x\":12,\"y\":18},\"heatmap\":{},\"hideZeroBuckets\":false,\"highlightCards\":true,\"id\":8,\"legend\":{\"show\":false},\"pluginVersion\":\"8.0.0-beta3\",\"reverseYBuckets\":false,\"targets\":[{\"account\":\"$account\",\"backends\":[],\"customSeriesNaming\":\"{AppName}\",\"dimension\":\"\",\"metric\":\"\",\"metricsQueryType\":\"query\",\"namespace\":\"ServiceFabric\",\"queryText\":\"metric(\\\"AppHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"AppName\\\", \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n| where + HealthState == \\\"OK\\\"\\n| summarize OK = max(Count) by AppName\\n| join + kind=fullouter (\\n metric(\\\"AppHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"AppName\\\", \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n | + where HealthState == \\\"Warning\\\"\\n | summarize Warning = max(Count) + by AppName\\n)\\n| join kind=fullouter (\\n metric(\\\"AppHealthState\\\").dimensions(\\\"ClusterName\\\", + \\\"AppName\\\", \\\"HealthState\\\").samplingTypes(\\\"Count\\\")\\n | + where HealthState == \\\"Error\\\"\\n | summarize Error = max(Count) by + AppName\\n)\\n| project AppHealthValues = foreach(a in OK, b in Warning, c + in Error) =\\u003e iif(isnull(c), iif(isnull(b), iif(isnull(a), 0, 1), 2), + 3)\\n| summarize AppHealthMaxCount = max(AppHealthValues) by AppName\\n| zoom + AppHealthReduced = max(AppHealthMaxCount) by 15m | top 10 by avg(AppHealthReduced)\",\"refId\":\"AppTimeline\",\"samplingType\":\"\",\"service\":\"metrics\",\"useBackends\":false,\"useCustomSeriesNaming\":true}],\"timeFrom\":null,\"timeShift\":null,\"title\":\"Top + 10 unhealthy applications across all clusters\",\"tooltip\":{\"show\":true,\"showHistogram\":false},\"type\":\"heatmap\",\"xAxis\":{\"show\":true},\"xBucketNumber\":null,\"xBucketSize\":null,\"yAxis\":{\"decimals\":null,\"format\":\"short\",\"logBase\":1,\"max\":null,\"min\":null,\"show\":true,\"splitFactor\":null},\"yBucketBound\":\"auto\",\"yBucketNumber\":null,\"yBucketSize\":null}],\"refresh\":\"\",\"schemaVersion\":30,\"style\":\"dark\",\"tags\":[],\"templating\":{\"list\":[{\"allValue\":null,\"current\":{},\"datasource\":\"Geneva + Datasource\",\"definition\":\"accounts()\",\"description\":\"The Geneva metrics + account name\",\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Account\",\"multi\":false,\"name\":\"account\",\"options\":[],\"query\":\"accounts()\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":1,\"type\":\"query\"}]},\"time\":{\"from\":\"now-6h\",\"to\":\"now\"},\"timepicker\":{},\"timezone\":\"\",\"title\":\"Service + Fabric Application Overview\",\"uid\":\"GIgvhSV7z\",\"version\":2}}" + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5CBSW85dWubRwtY4Bew3Mg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574417.142.440.78504|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:06Z","updated":"2023-03-11T22:40:06Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"TOB175-Vz","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test + Dashboard","uid":"IZE175-4k","version":1}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '881' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yC6mIP2wvoLRQC4WY3F9wQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574417.416.440.228026|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: DELETE + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + response: + body: + string: '{"message":"Dashboard not found","traceID":"ef7bb0a0425804d6e28483285f4352cd"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '78' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8aLscIKQ2/N5nI0nKDA0MQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574417.601.435.600236|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 404 + message: Not Found +- request: + body: '{"title": "Test Folder"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '24' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders + response: + body: + string: '{"id":31,"uid":"Yn4b7c-4z","title":"Test Folder","url":"/dashboards/f/Yn4b7c-4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:40:17.079923522Z","updatedBy":"example@example.com","updated":"2023-03-11T22:40:17.079923622Z","version":1,"parentUid":""}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '352' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aCPOJWtmLaVH2qZr50iAXw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574418.045.442.55675|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: '{"meta": {"type": "db", "canSave": true, "canEdit": true, "canAdmin": true, + "canStar": true, "canDelete": true, "slug": "test-dashboard", "url": "/d/IZE175-4k/test-dashboard", + "expires": "0001-01-01T00:00:00Z", "created": "2023-03-11T22:40:06Z", "updated": + "2023-03-11T22:40:06Z", "updatedBy": "example@example.com", "createdBy": "example@example.com", + "version": 1, "hasAcl": false, "isFolder": false, "folderId": 26, "folderUid": + "TOB175-Vz", "folderTitle": "Test Folder", "folderUrl": "/dashboards/f/TOB175-Vz/test-folder", + "provisioned": false, "provisionedExternalId": "", "annotationsPermissions": + {"dashboard": {"canAdd": false, "canEdit": false, "canDelete": false}, "organization": + {"canAdd": false, "canEdit": false, "canDelete": false}}, "hasPublicDashboard": + false, "publicDashboardAccessToken": "", "publicDashboardUid": "", "publicDashboardEnabled": + false}, "dashboard": {"title": "Test Dashboard", "uid": "IZE175-4k", "version": + 1}, "folderId": 31, "overwrite": true}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '982' + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: POST + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/db + response: + body: + string: '{"id":32,"slug":"test-dashboard","status":"success","uid":"IZE175-4k","url":"/d/IZE175-4k/test-dashboard","version":1}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '118' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5F/P170gDMB9sT2ECNqDUQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574418.274.443.723177|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/duj3tR77k + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"warmpathqos","url":"/d/duj3tR77k/warmpathqos","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:27Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"WarmPathQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations + \u0026 Alerts","type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":22,"links":[],"panels":[{"datasource":null,"gridPos":{"h":3,"w":24,"x":0,"y":0},"id":2,"options":{"content":"To + know more check \u003cbr\u003e\n\u003ca href=\"https://eng.ms/docs/products/geneva/logs/howtoguides/qos/overview\"\u003eWarmPath + QoS Metrics Overview\u003c/a\u003e","mode":"html"},"pluginVersion":"8.0.6","title":"Geneva + WarmPath Quick Links","type":"text"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":5,"w":12,"x":0,"y":3},"id":4,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"8.0.6","targets":[{"account":"$account","backends":[],"customSeriesNaming":"Total/1000","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"LatencyMs\").preaggregate(\"Total\")\n| + project LatencyMs=replacenulls(LatencyMs, 0)\n| project LatencyMs=LatencyMs/1000","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Warm + Path Ingestion Latency (Seconds)","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"purple","mode":"fixed"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":5,"w":12,"x":12,"y":3},"id":14,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"8.0.6","targets":[{"account":"$account","backends":[],"customSeriesNaming":"Total/1000","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"CosmosUpload\").samplingTypes(\"LatencyMs\").preaggregate(\"Total\")\n| + project LatencyMs=replacenulls(LatencyMs, 0) \n| zoom LatencyMs=avg(LatencyMs) + by 2h\n| project LatencyMs=LatencyMs/1000","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Cosmos + Upload Latency (Seconds)","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":50,"gradientMode":"opacity","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"decimals":1,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":8},"id":10,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"customSeriesNaming":"Ingestion + Latency / 1000","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"LatencyMs\").preaggregate(\"Total\") + \n| project LatencyMs=replacenulls(LatencyMs,0)/1000.0 \n| zoom LatencyMs=avg(LatencyMs) + by $interval","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Warm + Path Ingestion Latency Trend (Seconds)","transformations":[],"type":"timeseries"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"purple","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"dtdurations"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":8},"id":12,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"customSeriesNaming":"Cosmos + Upload Latency","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"CosmosUpload\").samplingTypes(\"LatencyMs\").preaggregate(\"Total\") + \n| project LatencyMs=replacenulls(LatencyMs, 0) \n| zoom LatencyMs=avg(LatencyMs) + by $interval","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Cosmos + Upload Latency Trend (Seconds)","type":"timeseries"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":50,"gradientMode":"opacity","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":16},"id":8,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"customSeriesNaming":"Ingestion + Throughput (MB/s)","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"ThroughputMBps\").preaggregate(\"Total\") + \n| project ThroughputMBps=replacenulls(ThroughputMBps,0) \n| zoom ThroughoutMBps=avg(ThroughputMBps) + by $interval","refId":"Ingestion Throughput","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Warm + Path Ingestion Throughput Trend (MB/s)","type":"timeseries"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"purple","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":50,"gradientMode":"opacity","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":16},"id":13,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"CosmosUpload\").samplingTypes(\"ThroughputMBps\").preaggregate(\"Total\") + \n| project ThroughputMBps=replacenulls(ThroughputMBps, 0)\n| zoom ThroughputMBps=avg(ThroughputMBps) + by $interval","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":false}],"title":"Cosmos + Upload Throughput Trend (MB/s)","transformations":[],"type":"timeseries"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"yellow","mode":"palette-classic"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":-1,"drawStyle":"bars","fillOpacity":50,"gradientMode":"opacity","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"decbytes"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":24},"id":9,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"EventReceivedBytes\").preaggregate(\"Total\") + \n| project EventReceivedBytes=replacenulls(EventReceivedBytes, 0) \n| zoom + EventReceivedBytes=sum(EventReceivedBytes) by $interval","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":false}],"title":"Data + Ingested into Warm Path (PerDay)","type":"timeseries"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"purple","mode":"fixed"},"custom":{"axisLabel":"","axisPlacement":"auto","barAlignment":-1,"drawStyle":"bars","fillOpacity":50,"gradientMode":"opacity","hideFrom":{"legend":false,"tooltip":false,"viz":false},"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"auto","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"decbytes"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":24},"id":11,"options":{"legend":{"calcs":[],"displayMode":"list","placement":"bottom"},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"customSeriesNaming":"Cosmos + Upload Throughput","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"CosmosUpload\").samplingTypes(\"EventProcessedBytes\").preaggregate(\"Total\") + | project EventProcessedBytes=replacenulls(EventProcessedBytes, 0) | zoom + EventProcessedBytes=sum(EventProcessedBytes) by $interval","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Cosmos + Upload Throughput Trend (MB/s)","type":"timeseries"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"hideFrom":{"legend":false,"tooltip":false,"viz":false}},"decimals":2,"mappings":[],"unit":"decbytes"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":32},"id":16,"options":{"legend":{"displayMode":"list","placement":"bottom"},"pieType":"donut","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"customSeriesNaming":"{MdsEndpoint}","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"EventReceivedBytes\").preaggregate(\"EventNS\") + \n| project EventReceivedBytes=replacenulls(EventReceivedBytes, 0) \n| zoom + EventReceivedBytes=avg(EventReceivedBytes) by $interval \n| top 40 by avg(EventReceivedBytes) + desc","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Data + Ingested into Warm Path (PerDay /PerNamesapce)","type":"piechart"},{"datasource":"Geneva + Datasource","fieldConfig":{"defaults":{"color":{"mode":"palette-classic"},"custom":{"hideFrom":{"legend":false,"tooltip":false,"viz":false}},"decimals":2,"mappings":[],"unit":"decbytes"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":12,"y":32},"id":17,"options":{"legend":{"displayMode":"list","placement":"bottom"},"pieType":"donut","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"tooltip":{"mode":"single"}},"targets":[{"account":"$account","backends":[],"customSeriesNaming":"{MdsEndpoint}","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineErrors\").samplingTypes(\"Count\").preaggregate(\"ErrorCategory+ErrorType\") + \n| project Count=replacenulls(Count, 0) \n| zoom Count=avg(Count) by $interval + \n| top 40 by avg(Count) desc","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Pipeline + Errors","type":"piechart"}],"refresh":false,"schemaVersion":30,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva + Datasource","definition":"accounts()","description":"The Geneva metrics account + name","error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"account","options":[],"query":"accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":1,"type":"query"},{"auto":true,"auto_count":30,"auto_min":"10s","current":{"selected":false,"text":"auto","value":"$__auto_interval_interval"},"description":null,"error":null,"hide":0,"label":"Interval","name":"interval","options":[{"selected":true,"text":"auto","value":"$__auto_interval_interval"},{"selected":false,"text":"1m","value":"1m"},{"selected":false,"text":"10m","value":"10m"},{"selected":false,"text":"30m","value":"30m"},{"selected":false,"text":"1h","value":"1h"},{"selected":false,"text":"2h","value":"2h"},{"selected":false,"text":"3h","value":"3h"},{"selected":false,"text":"6h","value":"6h"},{"selected":false,"text":"12h","value":"12h"},{"selected":false,"text":"1d","value":"1d"},{"selected":false,"text":"2d","value":"2d"},{"selected":false,"text":"3d","value":"3d"},{"selected":false,"text":"7d","value":"7d"},{"selected":false,"text":"14d","value":"14d"},{"selected":false,"text":"30d","value":"30d"}],"query":"1m,10m,30m,1h,2h,3h,6h,12h,1d,2d,3d,7d,14d,30d","queryValue":"","refresh":2,"skipUrlSync":false,"type":"interval"}]},"time":{"from":"now-7d","to":"now"},"timepicker":{},"timezone":"","title":"WarmPathQoS","uid":"duj3tR77k","version":2}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-M6tBA3iLJSvr5b5u+tB27w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574418.488.435.250475|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders/id/Test%20Folder + response: + body: + string: '{"message":"id is invalid","traceID":"a1a71c6cc86c21f1820f9c23a58e3923"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '72' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iUKvBg/NiaaRWXHx0duo9Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574418.792.439.726189|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders/Test%20Folder + response: + body: + string: '{"message":"folder not found","status":"not-found"}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '51' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Z59RMqRXyj2GJIiaaI6aDg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574419.013.440.158541|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders + response: + body: + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":18,"uid":"geneva","title":"Geneva"},{"id":31,"uid":"Yn4b7c-4z","title":"Test + Folder"}]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '141' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+vFjPJuxDUfDvtuewLXz4w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574419.196.437.311682|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + response: + body: + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:17Z","updated":"2023-03-11T22:40:17Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":31,"folderUid":"Yn4b7c-4z","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/Yn4b7c-4z/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":32,"title":"Test + Dashboard","uid":"IZE175-4k","version":1}}' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '881' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1Va7aV7cLYPlWYsbcQE5kQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sat, 11 Mar 2023 22:40:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678574419.492.441.893576|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +version: 1 diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index 30c3479da13..c19595b70d0 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -5,6 +5,7 @@ import os import tempfile +import time import unittest @@ -18,7 +19,7 @@ class AmgScenarioTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_amg') - def test_amg_crud(self, resource_group): + def dd_test_amg_crud(self, resource_group): self.kwargs.update({ 'name': 'clitestamg2', @@ -63,7 +64,7 @@ def test_amg_crud(self, resource_group): @ResourceGroupPreparer(name_prefix='cli_test_amg') - def test_api_key_e2e(self, resource_group): + def dd_test_api_key_e2e(self, resource_group): self.kwargs.update({ 'name': 'clitestamgapikey', @@ -92,7 +93,7 @@ def test_api_key_e2e(self, resource_group): self.assertTrue(number > 0) @ResourceGroupPreparer(name_prefix='cli_test_amg') - def test_service_account_e2e(self, resource_group): + def dd_test_service_account_e2e(self, resource_group): self.kwargs.update({ 'name': 'clitestserviceaccount', @@ -133,7 +134,7 @@ def test_service_account_e2e(self, resource_group): @AllowLargeResponse(size_kb=3072) @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westeurope') - def test_amg_e2e(self, resource_group): + def dd_test_amg_e2e(self, resource_group): # Test Instance self.kwargs.update({ @@ -291,12 +292,13 @@ def test_amg_e2e(self, resource_group): @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westcentralus') def test_amg_backup_restore(self, resource_group): + temp_dir = tempfile.TemporaryDirectory().name # Test Instance self.kwargs.update({ 'name': 'clitestamg', 'location': 'westcentralus', 'name2': 'clitestamg2', - 'tempDir': tempfile.TemporaryDirectory() + 'tempDir': temp_dir }) owner = self._get_signed_in_user() @@ -305,12 +307,16 @@ def test_amg_backup_restore(self, resource_group): with unittest.mock.patch('azext_amg.custom._gen_guid', side_effect=self.create_guid): amg1 = self.cmd('grafana create -g {rg} -n {name} -l {location}').get_output_in_json() + amg2 = self.cmd('grafana create -g {rg} -n {name2} -l {location}').get_output_in_json() + # Ensure RBAC changes are propagated + time.sleep(15) # set up folder self.kwargs.update({ 'folderTitle': 'Test Folder', - 'id': amg1['id'] - }) + 'id': amg1['id'], + 'id2': amg2['id'] + }) self.cmd('grafana folder create -g {rg} -n {name} --title "{folderTitle}"') # set up data source @@ -329,40 +335,36 @@ def test_amg_backup_restore(self, resource_group): 'dashboardTitle': dashboard_title, 'dashboardSlug': slug, }) - response_create = self.cmd('grafana dashboard create -g {rg} -n {name} --folder {folderTitle} --definition "{dashboardDefinition}" --title "{dashboardTitle}"').get_output_in_json() + response_create = self.cmd('grafana dashboard create -g {rg} -n {name} --folder "{folderTitle}" --definition "{dashboardDefinition}" --title "{dashboardTitle}"').get_output_in_json() self.kwargs.update({ 'dashboardUid': response_create["uid"], }) - self.cmd('grafana backup -g {rg} -n {name} -d {tempDir}') + self.cmd('grafana backup -g {rg} -n {name} -d "{tempDir}" --folders-to-include "{folderTitle}" --components datasources dashboards folders') - filenames = next(os.walk(tempDir), (None, None, []))[2] + filenames = next(os.walk(temp_dir), (None, None, []))[2] self.assertTrue(len(filenames) == 1) self.assertTrue(filenames[0].endswith('.tar.gz')) self.kwargs.update({ - 'archiveFile': os.path.join(tempDir, filenames[0]) + 'archiveFile': os.path.join(temp_dir, filenames[0]) }) self.cmd('grafana folder delete -g {rg} -n {name} --folder "{folderTitle}"') self.cmd('grafana data-source delete -g {rg} -n {name} --data-source "{dataSourceName}"') - self.cmd('grafana restore -g {rg} -n {name} --archive-file {archiveFile}') + self.cmd('grafana restore -g {rg} -n {name} --archive-file "{archiveFile}"') - self.cmd('grafana data-source show -g {rg} -n {name} --data-source "{dataSourceName}') + self.cmd('grafana data-source show -g {rg} -n {name} --data-source "{dataSourceName}"') self.cmd('grafana folder show -g {rg} -n {name} --folder "{folderTitle}"') - self.cmd('grafana dashboard show -g {rg} -n {name} --dashboard "{dashboardUid}"') # add a bit check - - amg2 = self.cmd('grafana create -g {rg} -n {name2} -l {location}').get_output_in_json() - self.kwargs.update({ - 'id2': amg2['id'] - }) + self.cmd('grafana dashboard show -g {rg} -n {name} --dashboard "{dashboardUid}"', checks=[ + self.check("[dashboard.title]", "['{dashboardTitle}']")]) - self.cmd('grafana dashboard sync --source {id} --destination {id2} --folders-to-include {folderTitle}') - self.cmd('grafana data-source show -g {rg} -n {name2} --data-source "{dataSourceName}') + self.cmd('grafana dashboard sync --source {id} --destination {id2} --folders-to-include "{folderTitle}"') self.cmd('grafana folder show -g {rg} -n {name2} --folder "{folderTitle}"') - self.cmd('grafana dashboard show -g {rg} -n {name2} --dashboard "{dashboardUid}"') # add a bit check + self.cmd('grafana dashboard show -g {rg} -n {name2} --dashboard "{dashboardUid}"', checks=[ + self.check("[dashboard.title]", "['{dashboardTitle}']")]) def _get_signed_in_user(self): From 19224c86513ae2feb97dd09929f21611230f7f42 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 11 Mar 2023 16:07:24 -0800 Subject: [PATCH 08/19] fix all lint errors --- src/amg/azext_amg/{save.py => backup.py} | 44 ++++++++++++------------ src/amg/azext_amg/custom.py | 30 +++++++++------- src/amg/azext_amg/restore.py | 12 +++---- src/amg/azext_amg/utils.py | 19 +++++----- 4 files changed, 55 insertions(+), 50 deletions(-) rename src/amg/azext_amg/{save.py => backup.py} (88%) diff --git a/src/amg/azext_amg/save.py b/src/amg/azext_amg/backup.py similarity index 88% rename from src/amg/azext_amg/save.py rename to src/amg/azext_amg/backup.py index 204bd17d29c..20f29ad4c59 100644 --- a/src/amg/azext_amg/save.py +++ b/src/amg/azext_amg/backup.py @@ -20,7 +20,7 @@ logger = get_logger(__name__) -def save(grafana_name, grafana_url, backup_dir, components, http_headers, **kwargs): +def backup(grafana_name, grafana_url, backup_dir, components, http_headers, **kwargs): backup_functions = {'dashboards': _save_dashboards, 'folders': _save_folders, 'snapshots': _save_snapshots, @@ -41,11 +41,12 @@ def save(grafana_name, grafana_url, backup_dir, components, http_headers, **kwar def _archive(grafana_name, backup_dir, timestamp): - archive_file = '{0}/{1}-{2}.tar.gz'.format(backup_dir, grafana_name, timestamp) + archive_file = f'{backup_dir}/{grafana_name}-{timestamp}.tar.gz' backup_files = [] - for folder_name in ['folders', 'datasources', 'dashboards', 'alert_channels', 'organizations', 'users', 'snapshots', 'versions', 'annotations']: - backup_path = '{0}/{1}/{2}'.format(backup_dir, folder_name, timestamp) + for folder_name in ['folders', 'datasources', 'dashboards', 'alert_channels', 'organizations', + 'users', 'snapshots', 'versions', 'annotations']: + backup_path = f'{backup_dir}/{folder_name}/{timestamp}' for file_path in glob(backup_path): logger.info('backup %s at: %s', folder_name, file_path) @@ -65,8 +66,8 @@ def _archive(grafana_name, backup_dir, timestamp): # Save dashboards def _save_dashboards(grafana_url, backup_dir, timestamp, http_headers, **kwargs): - folder_path = '{0}/dashboards/{1}'.format(backup_dir, timestamp) - log_file = 'dashboards_{0}.txt'.format(timestamp) + folder_path = f'{backup_dir}/dashboards/{timestamp}' + log_file = f'dashboards_{timestamp}.txt' if not os.path.exists(folder_path): os.makedirs(folder_path) @@ -118,9 +119,9 @@ def _save_dashboard_setting(dashboard_name, file_name, dashboard_settings, folde def _get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file, grafana_url, http_headers): file_path = folder_path + '/' + log_file if dashboards: - with open("{0}".format(file_path), 'w', encoding="utf8") as f: + with open(file_path, 'w', encoding="utf8") as f: for board in dashboards: - board_uri = "uid/{0}".format(board['uid']) + board_uri = "uid/" + board['uid'] (status, content) = get_dashboard(board_uri, grafana_url, http_headers) if status == 200: @@ -129,13 +130,12 @@ def _get_individual_dashboard_setting_and_save(dashboards, folder_path, log_file board_uri, content, folder_path) - f.write('{0}\t{1}\n'.format(board_uri, board['title'])) + f.write(board_uri + '\t' + board['title'] + '\n') # Save snapshots def _save_snapshots(grafana_url, backup_dir, timestamp, http_headers, **kwargs): # pylint: disable=unused-argument - folder_path = '{0}/snapshots/{1}'.format(backup_dir, timestamp) - 'snapshots_{0}.txt'.format(timestamp) + folder_path = f'{backup_dir}/snapshots/{timestamp}' if not os.path.exists(folder_path): os.makedirs(folder_path) @@ -175,8 +175,8 @@ def _get_all_snapshots_and_save(folder_path, grafana_url, http_get_headers): # Save folders def _save_folders(grafana_url, backup_dir, timestamp, http_headers, **kwargs): - folder_path = '{0}/folders/{1}'.format(backup_dir, timestamp) - log_file = 'folders_{0}.txt'.format(timestamp) + folder_path = f'{backup_dir}/folders/{timestamp}' + log_file = f'folders_{timestamp}.txt' if not os.path.exists(folder_path): os.makedirs(folder_path) @@ -216,7 +216,6 @@ def _save_folder_setting(folder_name, file_name, folder_settings, folder_permiss file_path = _save_json(file_name, folder_settings, folder_path, 'folder') logger.warning("Folder: \"%s\" is saved", folder_name) logger.info(" -> %s", file_path) - # NOTICE: The 'folder_permission' file extension had the 's' removed to work with the magical dict logic in restore.py... file_path = _save_json(file_name, folder_permissions, folder_path, 'folder_permission') logger.warning("Folder permissions: %s are saved", folder_name) logger.info(" -> %s", file_path) @@ -224,12 +223,14 @@ def _save_folder_setting(folder_name, file_name, folder_settings, folder_permiss def _get_individual_folder_setting_and_save(folders, folder_path, log_file, grafana_url, http_get_headers): file_path = folder_path + '/' + log_file - with open("{0}".format(file_path), 'w+', encoding="utf8") as f: + with open(file_path, 'w+', encoding="utf8") as f: for folder in folders: - folder_uri = "uid/{0}".format(folder['uid']) + folder_uri = "uid/" + folder['uid'] (status_folder_settings, content_folder_settings) = get_folder(folder['uid'], grafana_url, http_get_headers) - (status_folder_permissions, content_folder_permissions) = get_folder_permissions(folder['uid'], grafana_url, http_get_headers) + (status_folder_permissions, content_folder_permissions) = get_folder_permissions(folder['uid'], + grafana_url, + http_get_headers) if status_folder_settings == 200 and status_folder_permissions == 200: _save_folder_setting( @@ -238,13 +239,12 @@ def _get_individual_folder_setting_and_save(folders, folder_path, log_file, graf content_folder_settings, content_folder_permissions, folder_path) - f.write('{0}\t{1}\n'.format(folder_uri, folder['title'])) + f.write(folder_uri + '\t' + folder['title'] + '\n') # Save annotations def _save_annotations(grafana_url, backup_dir, timestamp, http_headers, **kwargs): # pylint: disable=unused-argument - folder_path = '{0}/annotations/{1}'.format(backup_dir, timestamp) - 'annotations_{0}.txt'.format(timestamp) + folder_path = f'{backup_dir}/annotations/{timestamp}' if not os.path.exists(folder_path): os.makedirs(folder_path) @@ -285,7 +285,7 @@ def _get_all_annotations_and_save(folder_path, grafana_url, http_get_headers): # Save data sources def _save_datasources(grafana_url, backup_dir, timestamp, http_headers, **kwargs): # pylint: disable=unused-argument - folder_path = '{0}/datasources/{1}'.format(backup_dir, timestamp) + folder_path = f'{backup_dir}/datasources/{timestamp}' if not os.path.exists(folder_path): os.makedirs(folder_path) @@ -320,7 +320,7 @@ def _save_json(file_name, data, folder_path, extension, pretty_print=None): file_name = re.sub(pattern, '', file_name) file_path = folder_path + '/' + file_name + '.' + extension - with open("{0}".format(file_path), 'w', encoding="utf8") as f: + with open(file_path, 'w', encoding="utf8") as f: if pretty_print: f.write(json.dumps(data, sort_keys=True, indent=4, separators=(',', ': '))) else: diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index c8e6bd66adc..460a42a7366 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -225,23 +225,24 @@ def delete_grafana(cmd, grafana_name, resource_group_name=None): _delete_role_assignment(cmd.cli_ctx, grafana.identity.principal_id) -def backup_grafana(cmd, grafana_name, components=None, directory=None, folders_to_include=None, folders_to_exclude=None, resource_group_name=None): +def backup_grafana(cmd, grafana_name, components=None, directory=None, folders_to_include=None, + folders_to_exclude=None, resource_group_name=None): import os from pathlib import Path - from .save import save + from .backup import backup creds = _get_data_plane_creds(cmd, api_key_or_token=None, subscription=None) headers = { "content-type": "application/json", "authorization": "Bearer " + creds[1] } - save(grafana_name=grafana_name, - grafana_url=_get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription=None), - backup_dir=directory or os.path.join(Path.cwd(), "_backup"), - components=components, - http_headers=headers, - folders_to_include=folders_to_include, - folders_to_exclude=folders_to_exclude) + backup(grafana_name=grafana_name, + grafana_url=_get_grafana_endpoint(cmd, resource_group_name, grafana_name, subscription=None), + backup_dir=directory or os.path.join(Path.cwd(), "_backup"), + components=components, + http_headers=headers, + folders_to_include=folders_to_include, + folders_to_exclude=folders_to_exclude) def restore_grafana(cmd, grafana_name, archive_file, components=None, resource_group_name=None): @@ -290,7 +291,8 @@ def sync_dashboard(cmd, source, destination, folders_to_include=None, folders_to for s in source_data_sources: s_type = s.get("type") s_name = s.get("name") - matched_ds = next((x for x in destination_data_sources if s_type == x.get("type") and s_name == x.get("name")), None) + matched_ds = next((x for x in destination_data_sources + if s_type == x.get("type") and s_name == x.get("name")), None) if not matched_ds: continue uid_mapping[s.get("uid")] = matched_ds.get("uid") @@ -377,7 +379,8 @@ def remap_uids(indict, uid_mapping, data_source_missed): remap_uids(v, uid_mapping, data_source_missed) -def create_annotation(cmd, grafana_name, description, resource_group_name=None, api_key_or_token=None, subscription=None): +def create_annotation(cmd, grafana_name, description, resource_group_name=None, api_key_or_token=None, + subscription=None): payload = { "text": description } @@ -392,7 +395,8 @@ def list_annotations(cmd, grafana_name, resource_group_name=None, api_key_or_tok return json.loads(response.content) -def delete_annotation(cmd, grafana_name, annotation, resource_group_name=None, api_key_or_token=None, subscription=None): +def delete_annotation(cmd, grafana_name, annotation, resource_group_name=None, api_key_or_token=None, + subscription=None): _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/annotations/" + annotation, api_key_or_token=api_key_or_token, subscription=subscription) @@ -409,7 +413,7 @@ def list_dashboards(cmd, grafana_name, resource_group_name=None, api_key_or_toke dashboards = [] while True: response = _send_request(cmd, resource_group_name, grafana_name, "get", - "/api/search?type=dash-db&limit={0}&page={1}".format(limit, current_page), + f"/api/search?type=dash-db&limit={limit}&page={current_page}", api_key_or_token=api_key_or_token, subscription=subscription) temp = json.loads(response.content) dashboards += temp diff --git a/src/amg/azext_amg/restore.py b/src/amg/azext_amg/restore.py index 21cbd3bd0f4..c415f5ac6c4 100644 --- a/src/amg/azext_amg/restore.py +++ b/src/amg/azext_amg/restore.py @@ -45,7 +45,7 @@ def _restore_components(grafana_url, restore_functions, tmpdir, components, http exts.insert(0, exts.pop(exts.index("folder"))) for ext in exts: - for file_path in glob('{0}/**/*.{1}'.format(tmpdir, ext), recursive=True): + for file_path in glob(f'{tmpdir}/**/*.{ext}', recursive=True): logger.info('Restoring %s: %s', ext, file_path) restore_functions[ext](grafana_url, file_path, http_headers) @@ -64,7 +64,7 @@ def _create_dashboard(grafana_url, file_path, http_headers): 'overwrite': True } - result = send_grafana_post('{0}/api/dashboards/db'.format(grafana_url), json.dumps(payload), http_headers) + result = send_grafana_post(f'{grafana_url}/api/dashboards/db', json.dumps(payload), http_headers) dashboard_title = content['dashboard'].get('title', '') logger.warning("Create dashboard \"%s\". %s", dashboard_title, "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) @@ -81,7 +81,7 @@ def _create_snapshot(grafana_url, file_path, http_headers): except KeyError: snapshot['name'] = "Untitled Snapshot" - (status, content) = send_grafana_post('{0}/api/snapshots'.format(grafana_url), json.dumps(snapshot), http_headers) + (status, content) = send_grafana_post(f'{grafana_url}/api/snapshots', json.dumps(snapshot), http_headers) logger.warning("Create snapshot \"%s\". %s", snapshot['name'], "SUCCESS" if status == 200 else "FAILURE") logger.info("status: %s, msg: %s", status, content) @@ -92,7 +92,7 @@ def _create_folder(grafana_url, file_path, http_headers): data = f.read() folder = json.loads(data) - result = send_grafana_post('{0}/api/folders'.format(grafana_url), json.dumps(folder), http_headers) + result = send_grafana_post(f'{grafana_url}/api/folders', json.dumps(folder), http_headers) logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) @@ -103,7 +103,7 @@ def _create_annotation(grafana_url, file_path, http_headers): data = f.read() annotation = json.loads(data) - result = send_grafana_post('{0}/api/annotations'.format(grafana_url), json.dumps(annotation), http_headers) + result = send_grafana_post(f'{grafana_url}/api/annotations', json.dumps(annotation), http_headers) logger.warning("Create annotation \"%s\". %s", annotation['id'], "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) @@ -114,6 +114,6 @@ def _create_datasource(grafana_url, file_path, http_headers): data = f.read() datasource = json.loads(data) - result = send_grafana_post('{0}/api/datasources'.format(grafana_url), json.dumps(datasource), http_headers) + result = send_grafana_post(f'{grafana_url}/api/datasources', json.dumps(datasource), http_headers) logger.warning("Create datasource \"%s\". %s", datasource['name'], "SUCCESS" if result[0] == 200 else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) diff --git a/src/amg/azext_amg/utils.py b/src/amg/azext_amg/utils.py index e31b1aef8b0..7abe5d5ba6f 100644 --- a/src/amg/azext_amg/utils.py +++ b/src/amg/azext_amg/utils.py @@ -17,13 +17,13 @@ def log_response(resp): def search_dashboard(page, limit, grafana_url, http_get_headers): - url = '{0}/api/search/?type=dash-db&limit={1}&page={2}'.format(grafana_url, limit, page) + url = f'{grafana_url}/api/search/?type=dash-db&limit={limit}&page={page}' logger.info("search dashboard in grafana: %s", url) return send_grafana_get(url, http_get_headers) def get_dashboard(board_uri, grafana_url, http_get_headers): - url = '{0}/api/dashboards/{1}'.format(grafana_url, board_uri) + url = f'{grafana_url}/api/dashboards/{board_uri}' logger.info("query dashboard uri: %s", url) (status_code, content) = send_grafana_get(url, http_get_headers) return (status_code, content) @@ -33,40 +33,41 @@ def search_annotations(grafana_url, ts_from, ts_to, http_get_headers): # there is two types of annotations # annotation: are user created, custom ones and can be managed via the api # alert: are created by Grafana itself, can NOT be managed by the api - url = '{0}/api/annotations?type=annotation&limit=5000&from={1}&to={2}'.format(grafana_url, ts_from, ts_to) + url = f'{grafana_url}/api/annotations?type=annotation&limit=5000&from={ts_from}&to={ts_to}' (status_code, content) = send_grafana_get(url, http_get_headers) return (status_code, content) def search_datasource(grafana_url, http_get_headers): logger.info("search datasources in grafana:") - return send_grafana_get('{0}/api/datasources'.format(grafana_url), http_get_headers) + return send_grafana_get(f'{grafana_url}/api/datasources', http_get_headers) def search_snapshot(grafana_url, http_get_headers): logger.info("search snapshots in grafana:") - return send_grafana_get('{0}/api/dashboard/snapshots'.format(grafana_url), http_get_headers) + return send_grafana_get(f'{grafana_url}/api/dashboard/snapshots', http_get_headers) def get_snapshot(key, grafana_url, http_get_headers): - url = '{0}/api/snapshots/{1}'.format(grafana_url, key) + url = f'{grafana_url}/api/snapshots/{key}' (status_code, content) = send_grafana_get(url, http_get_headers) return (status_code, content) def search_folders(grafana_url, http_get_headers): logger.info("search folder in grafana:") - return send_grafana_get('{0}/api/search/?type=dash-folder'.format(grafana_url), http_get_headers) + return send_grafana_get(f'{grafana_url}/api/search/?type=dash-folder', http_get_headers) def get_folder(uid, grafana_url, http_get_headers): - (status_code, content) = send_grafana_get('{0}/api/folders/{1}'.format(grafana_url, uid), http_get_headers) + (status_code, content) = send_grafana_get(f'{grafana_url}/api/folders/{uid}', http_get_headers) logger.info("query folder:%s, status:%s", uid, status_code) return (status_code, content) def get_folder_permissions(uid, grafana_url, http_get_headers): - (status_code, content) = send_grafana_get('{0}/api/folders/{1}/permissions'.format(grafana_url, uid), http_get_headers) + (status_code, content) = send_grafana_get(f'{grafana_url}/api/folders/{uid}/permissions', + http_get_headers) logger.info("query folder permissions:%s, status:%s", uid, status_code) return (status_code, content) From a6e9ace3001f4e204db15a2dce3121060f0e34d7 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 11 Mar 2023 17:27:12 -0800 Subject: [PATCH 09/19] rerun all tests --- .../recordings/test_amg_backup_restore.yaml | 1966 ++++++----------- .../latest/recordings/test_amg_crud.yaml | 548 +++-- .../tests/latest/recordings/test_amg_e2e.yaml | 1681 ++++++++------ .../latest/recordings/test_api_key_e2e.yaml | 418 ++-- .../recordings/test_service_account_e2e.yaml | 565 +++-- .../tests/latest/test_amg_scenario.py | 8 +- 6 files changed, 2635 insertions(+), 2551 deletions(-) diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml index 4f18fcb19a3..8df6bf86178 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml @@ -23,12 +23,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:30:50.3934167Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:30:50.3934167Z"},"identity":{"principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:09:45.8739568Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:09:45.8739568Z"},"identity":{"principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:30:51 GMT + - Sun, 12 Mar 2023 00:09:47 GMT etag: - - '"d7005eef-0000-0600-0000-640d011b0000"' + - '"d8001308-0000-0600-0000-640d184b0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -74,21 +74,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:30:51 GMT + - Sun, 12 Mar 2023 00:09:47 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -120,21 +120,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:31:21 GMT + - Sun, 12 Mar 2023 00:10:17 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -166,21 +166,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:31:51 GMT + - Sun, 12 Mar 2023 00:10:47 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -212,21 +212,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:32:22 GMT + - Sun, 12 Mar 2023 00:11:17 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -258,21 +258,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:32:52 GMT + - Sun, 12 Mar 2023 00:11:47 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -304,21 +304,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:33:22 GMT + - Sun, 12 Mar 2023 00:12:17 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -350,21 +350,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:33:52 GMT + - Sun, 12 Mar 2023 00:12:47 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -396,21 +396,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:34:22 GMT + - Sun, 12 Mar 2023 00:13:17 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -442,21 +442,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-11T22:30:51.557161Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:34:52 GMT + - Sun, 12 Mar 2023 00:13:47 GMT etag: - - '"5f00ea5a-0000-0600-0000-640d011b0000"' + - '"5f00305c-0000-0600-0000-640d184b0000"' expires: - '-1' pragma: @@ -488,21 +488,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","name":"705cbda9-f89e-4e99-86f1-c6e2ca1c8613*52D25F4FD84E7432B4C84F3ED3BBBE12E661C2E3F9EB947037B182B49133DD86","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-11T22:30:51.557161Z","endTime":"2023-03-11T22:34:53.1454354Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-12T00:09:47.1887846Z","endTime":"2023-03-12T00:14:03.0126038Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '577' + - '578' content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:22 GMT + - Sun, 12 Mar 2023 00:14:18 GMT etag: - - '"5f00f55a-0000-0600-0000-640d020d0000"' + - '"5f004b5c-0000-0600-0000-640d194b0000"' expires: - '-1' pragma: @@ -537,7 +537,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:30:50.3934167Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:30:50.3934167Z"},"identity":{"principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:09:45.8739568Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:09:45.8739568Z"},"identity":{"principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -546,9 +546,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:22 GMT + - Sun, 12 Mar 2023 00:14:18 GMT etag: - - '"d7006cef-0000-0600-0000-640d020d0000"' + - '"d800de09-0000-0600-0000-640d194b0000"' expires: - '-1' pragma: @@ -615,19 +615,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sat, 11 Mar 2023 22:35:23 GMT + - Sun, 12 Mar 2023 00:14:19 GMT duration: - - '1543109' + - '1707365' expires: - '-1' ocp-aad-diagnostics-server-name: - - gYXL8Ys0yBAU65H1cShNFgrwPnZJdfXxE+opePIaGk0= + - QtHkfRY3qvzCTvXrtqU2VI1Vnl7QlDUsK/8TdqSeb+g= ocp-aad-session-key: - - Z5FQ3uMwN_jfj5i4u3ejwwv7QZxBIn5bokQXKwgKQBcOti2I5UqlPfeBrLkwPOKbu2PGG1Jv8M7fzXR1-hQv_TTYoJmwZqpEcZ7MpjsxjaSP0HH7kbcFFnGqsvGIABFG.Hay-OLdzDndrYHM1iqFtfm3SXajxcq0mR85K3RPvSPI + - -YEjAXojj0YjpnSA_AcRcGoRpekznArW2-B07w-tIKmbwYK4RoVag_CYXQCVft0G5wRAL4-x8AfTwR8cb6c3UHZnwLrA2KiZZqJz6fCMc4kdr0Yxpx2lYUQtSnA-qq7D.EQ63LSOnQw9FU7Ax5PyH63bJXR7RG7BVDi_ecdse7hI pragma: - no-cache request-id: - - eaf2b6fb-a3b5-4e0d-812c-5531e4cac94f + - 8b3d4c19-4267-442b-bb3f-641878cf5a76 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -673,7 +673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:23 GMT + - Sun, 12 Mar 2023 00:14:19 GMT expires: - '-1' pragma: @@ -718,7 +718,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:35:24.4596773Z","updatedOn":"2023-03-11T22:35:24.9057726Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:14:20.3158068Z","updatedOn":"2023-03-12T00:14:20.9128107Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -727,7 +727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:26 GMT + - Sun, 12 Mar 2023 00:14:23 GMT expires: - '-1' pragma: @@ -775,7 +775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:27 GMT + - Sun, 12 Mar 2023 00:14:23 GMT expires: - '-1' pragma: @@ -795,7 +795,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "e92e71bb-ea60-4f1d-94eb-47f24c329919"}}' + "principalId": "5213235b-737c-4dfd-86c4-d5d744f75bf8"}}' headers: Accept: - application/json @@ -820,7 +820,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:35:27.9703635Z","updatedOn":"2023-03-11T22:35:28.4053659Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:14:23.5260163Z","updatedOn":"2023-03-12T00:14:23.9250174Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -829,7 +829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:30 GMT + - Sun, 12 Mar 2023 00:14:25 GMT expires: - '-1' pragma: @@ -869,12 +869,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:35:31.7338614Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:35:31.7338614Z"},"identity":{"principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:14:27.2170532Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:14:27.2170532Z"},"identity":{"principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -882,13 +882,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:32 GMT + - Sun, 12 Mar 2023 00:14:29 GMT etag: - - '"d7006fef-0000-0600-0000-640d02350000"' + - '"d800df09-0000-0600-0000-640d19650000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -920,10 +920,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -932,9 +932,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:35:32 GMT + - Sun, 12 Mar 2023 00:14:29 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -966,10 +966,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -978,9 +978,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:36:03 GMT + - Sun, 12 Mar 2023 00:14:58 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -1012,10 +1012,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -1024,9 +1024,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:36:33 GMT + - Sun, 12 Mar 2023 00:15:29 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -1058,10 +1058,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -1070,9 +1070,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:37:03 GMT + - Sun, 12 Mar 2023 00:15:59 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -1104,10 +1104,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -1116,9 +1116,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:37:33 GMT + - Sun, 12 Mar 2023 00:16:29 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -1150,10 +1150,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -1162,9 +1162,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:38:04 GMT + - Sun, 12 Mar 2023 00:16:59 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -1196,10 +1196,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -1208,9 +1208,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:38:33 GMT + - Sun, 12 Mar 2023 00:17:29 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -1242,10 +1242,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-11T22:35:33.1695516Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' headers: cache-control: - no-cache @@ -1254,9 +1254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:39:04 GMT + - Sun, 12 Mar 2023 00:18:00 GMT etag: - - '"5f00f75a-0000-0600-0000-640d02350000"' + - '"5f004c5c-0000-0600-0000-640d19640000"' expires: - '-1' pragma: @@ -1288,10 +1288,56 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","name":"8b46ad4b-4847-449d-a58a-b56745e03c09*0B3964BDB9F970FD7F3F43404580676800BB290FB077C42A542339CE8C1C1887","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-11T22:35:33.1695516Z","endTime":"2023-03-11T22:39:17.2358242Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:18:29 GMT + etag: + - '"5f004c5c-0000-0600-0000-640d19640000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-12T00:14:28.7867843Z","endTime":"2023-03-12T00:18:33.3710495Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -1300,9 +1346,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:39:33 GMT + - Sun, 12 Mar 2023 00:18:59 GMT etag: - - '"5f00fd5a-0000-0600-0000-640d03150000"' + - '"5f00685c-0000-0600-0000-640d1a590000"' expires: - '-1' pragma: @@ -1337,7 +1383,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:35:31.7338614Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:35:31.7338614Z"},"identity":{"principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:14:27.2170532Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:14:27.2170532Z"},"identity":{"principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -1346,9 +1392,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:39:33 GMT + - Sun, 12 Mar 2023 00:18:59 GMT etag: - - '"d7007bef-0000-0600-0000-640d03150000"' + - '"d800ea09-0000-0600-0000-640d1a590000"' expires: - '-1' pragma: @@ -1415,19 +1461,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sat, 11 Mar 2023 22:39:35 GMT + - Sun, 12 Mar 2023 00:19:00 GMT duration: - - '955584' + - '3692846' expires: - '-1' ocp-aad-diagnostics-server-name: - - +oWsWHY2xtogHRyyqqJ3jqbt+HKWHpTfhFG+c9zEzhA= + - xZRngKATcZdebyzajwmERzIFaR/6HbXJsY6kh3OdNLM= ocp-aad-session-key: - - XiDSaVjw4ZxLYnSE3Wmq8yUAJIWkGHTK_AdvWNbSSICwq6dMVgk-Z37-YVKLZZd22wS_00D3ot0JtlTjRqNyBdy9lXMDadBWeuf7XwGjFvVpy5wb0DpHMP1FF3Y_5uLl.giNJY4yOb3BbOZP9f6WO2BVJeXxl08OpiaK6DhKfd2U + - I90SYuBJR8XTEK-JfofyUaXEDJRUTZylgsTMM-_Ld3RoMlXcMAwtGGtSsUultJDWrc5i4DlFRDE4wuBWFku8WXtN-PWn3iQxhMx10Onk1WPZAqSag5BYNHWbAL_MJIiV.22N85KUZenUCxHcGkKtHcW9qhR7-rq6nIp1kPAsya1U pragma: - no-cache request-id: - - 235ec9f0-f60d-4b84-8f5c-50e39e633711 + - 3d723092-2ffd-4744-96fb-71d5635f0428 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1473,7 +1519,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:39:34 GMT + - Sun, 12 Mar 2023 00:19:00 GMT expires: - '-1' pragma: @@ -1518,7 +1564,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:39:35.8799392Z","updatedOn":"2023-03-11T22:39:36.2820500Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:19:01.8145699Z","updatedOn":"2023-03-12T00:19:02.2775829Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' headers: cache-control: - no-cache @@ -1527,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:39:36 GMT + - Sun, 12 Mar 2023 00:19:03 GMT expires: - '-1' pragma: @@ -1567,883 +1613,134 @@ interactions: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can read all monitoring data.","assignableScopes":["/"],"permissions":[{"actions":["*/read","Microsoft.OperationalInsights/workspaces/search/action","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2016-09-21T19:19:52.4939376Z","updatedOn":"2022-09-06T17:20:40.5763144Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","type":"Microsoft.Authorization/roleDefinitions","name":"43d0d8ad-25c7-4714-9337-8ba259a9fe05"}]}' - headers: - cache-control: - - no-cache - content-length: - - '683' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 11 Mar 2023 22:39:36 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "2d477ccc-31f3-4b5f-845e-631b3bcc14ab"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -l - User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2020-04-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T22:39:37.7563349Z","updatedOn":"2023-03-11T22:39:38.1843346Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' - headers: - cache-control: - - no-cache - content-length: - - '823' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 11 Mar 2023 22:39:39 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana folder create - Connection: - - keep-alive - ParameterSetName: - - -g -n --title - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:30:50.3934167Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:30:50.3934167Z"},"identity":{"principalId":"e92e71bb-ea60-4f1d-94eb-47f24c329919","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' - headers: - cache-control: - - no-cache - content-length: - - '1058' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 11 Mar 2023 22:39:55 GMT - etag: - - '"d7006cef-0000-0600-0000-640d020d0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - status: - code: 200 - message: OK -- request: - body: '{"title": "Test Folder"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '24' - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders - response: - body: - string: '{"id":24,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:39:58.801103733Z","updatedBy":"example@example.com","updated":"2023-03-11T22:39:58.801103833Z","version":1,"parentUid":""}' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '352' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cEMcuc6fZMMDMJ1eyObI2g';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:39:58 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574397.428.435.116939|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: '{"access": "proxy", "jsonData": {"azureAuthType": "msi", "subscriptionId": - ""}, "name": "Test Azure Monitor Data Source", "type": "grafana-azure-monitor-datasource"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '165' - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources - response: - body: - string: '{"datasource":{"id":3,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure - Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource - added","name":"Test Azure Monitor Data Source"}' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '461' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-0HeEWQ3THAMB2jCuxo6iCg';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:39:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574400.062.439.942514|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder - response: - body: - string: '{"message":"id is invalid","traceID":"8fba58f21be539c6debfc40945ace9c3"}' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '72' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iD0cYb+objkK+swIrXdOiQ';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:39:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574400.636.443.392646|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder - response: - body: - string: '{"message":"folder not found","status":"not-found"}' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '51' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1lwJKB7WehvnzswWcAOhmA';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:39:59 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574400.816.437.992636|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders - response: - body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"TOB175-Vz","title":"Test - Folder"}]' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '141' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WVeL5F72gr34tUlG6Efrwg';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:40:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574401.006.440.957571|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: '{"dashboard": {"title": "Test Dashboard"}, "folderId": 24, "overwrite": - false}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '78' - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db - response: - body: - string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"IZE175-4k","url":"/d/IZE175-4k/test-dashboard","version":1}' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '118' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TiArwwIJmYNNzbJ8lCuOIQ';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:40:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574401.588.442.683082|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=1 - response: - body: - string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":7,"uid":"dyzn5SK7z","title":"Azure - / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Yo38mcvnz","title":"Azure - / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure - / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure - / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure - / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure - / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure - / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByRG","title":"Azure - / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure - / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Mtwt2BV7k","title":"Azure - / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"IZE175-4k","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/IZE175-4k/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":24,"folderUid":"TOB175-Vz","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3uTgdS2Cat3lql36lXXlYA';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:40:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574401.878.436.888392|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k - response: - body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:00Z","updated":"2023-03-11T22:40:00Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":24,"folderUid":"TOB175-Vz","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test - Dashboard","uid":"IZE175-4k","version":1}}' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '881' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-UncdRJS5InmJuGaFbymleA';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:40:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574402.04.440.208827|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=2 - response: - body: - string: '[]' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '2' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Utn+UybYU2OLia5lgv5E6g';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:40:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574402.22.442.54058|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-folder - response: - body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor","uri":"db/azure-monitor","url":"/dashboards/f/az-mon/azure-monitor","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":12,"uid":"geneva","title":"Geneva","uri":"db/geneva","url":"/dashboards/f/geneva/geneva","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":24,"uid":"TOB175-Vz","title":"Test - Folder","uri":"db/test-folder","url":"/dashboards/f/TOB175-Vz/test-folder","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0}]' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '546' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EYNSqcFW7voKKfvEU7DvDg';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; - content-type: - - application/json - date: - - Sat, 11 Mar 2023 22:40:01 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574402.395.438.170585|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly - strict-transport-security: - - max-age=15724800; includeSubDomains - x-content-type-options: - - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz - response: - body: - string: '{"id":24,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:39:58Z","updatedBy":"example@example.com","updated":"2023-03-11T22:39:58Z","version":1,"parentUid":""}' - headers: - cache-control: - - no-cache - connection: - - keep-alive - content-length: - - '332' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2qtWldKVR5ZYm+3yp7ePVA';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; + headers: + cache-control: + - no-cache + content-length: + - '683' content-type: - - application/json + - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:40:01 GMT + - Sun, 12 Mar 2023 00:19:03 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574402.559.442.820158|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - - max-age=15724800; includeSubDomains + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - request: - body: null + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", + "principalId": "e284654f-94cd-4bb6-8c62-0e5e546ae413"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - grafana create Connection: - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l User-Agent: - - python-requests/2.26.0 - content-type: - - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz/permissions + - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2020-04-01-preview response: body: - string: '[{"folderId":24,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Viewer","permission":1,"permissionName":"View","uid":"TOB175-Vz","title":"Test - Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/TOB175-Vz/test-folder","inherited":false},{"folderId":24,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Editor","permission":2,"permissionName":"Edit","uid":"TOB175-Vz","title":"Test - Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/TOB175-Vz/test-folder","inherited":false}]' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:19:04.2373191Z","updatedOn":"2023-03-12T00:19:04.6603213Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' headers: cache-control: - no-cache - connection: - - keep-alive content-length: - - '783' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Sxnzvt6W7uN9MZpwY4/GKQ';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; + - '823' content-type: - - application/json + - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:40:01 GMT + - Sun, 12 Mar 2023 00:19:05 GMT expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574402.723.440.852778|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - - max-age=15724800; includeSubDomains + - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - grafana folder create Connection: - keep-alive + ParameterSetName: + - -g -n --title User-Agent: - - python-requests/2.26.0 - content-type: - - application/json + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboard/snapshots + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '[]' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:09:45.8739568Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:09:45.8739568Z"},"identity":{"principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache - connection: - - keep-alive content-length: - - '2' - content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-my7AmAKtelXh7ecFvmPbcQ';object-src - 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' - blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src - 'self';media-src 'none';form-action 'self'; + - '1058' content-type: - - application/json + - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:40:01 GMT + - Sun, 12 Mar 2023 00:19:21 GMT + etag: + - '"d800de09-0000-0600-0000-640d194b0000"' expires: - '-1' pragma: - no-cache - request-context: - - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c - set-cookie: - - INGRESSCOOKIE=1678574402.892.435.105603|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly strict-transport-security: - - max-age=15724800; includeSubDomains + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - DENY - x-xss-protection: - - 1; mode=block + x-ms-providerhub-traffic: + - 'True' status: code: 200 message: OK - request: - body: null + body: '{"title": "Test Folder"}' headers: Accept: - '*/*' @@ -2451,31 +1748,33 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '24' User-Agent: - python-requests/2.26.0 content-type: - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1675896002126&to=1678574402126 + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '[]' + string: '{"id":26,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:25.170148727Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:25.170148927Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-d4l8hfI7KZyt0Ze8i3G+Zw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CMC0ebWANrDh5BexdKRtzw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:02 GMT + - Sun, 12 Mar 2023 00:19:25 GMT expires: - '-1' pragma: @@ -2483,7 +1782,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574403.055.441.805414|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580364.095.440.323970|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2497,7 +1796,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"access": "proxy", "jsonData": {"azureAuthType": "msi", "subscriptionId": + ""}, "name": "Test Azure Monitor Data Source", "type": "grafana-azure-monitor-datasource"}' headers: Accept: - '*/*' @@ -2505,31 +1805,35 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '165' User-Agent: - python-requests/2.26.0 content-type: - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1673217602126&to=1675896002126 + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '[]' + string: '{"datasource":{"id":3,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure + Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource + added","name":"Test Azure Monitor Data Source"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6GQUjE1L0yAYjZgJMSKAJg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5QXUgpkeQ1HFaqtUoi2e3A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:02 GMT + - Sun, 12 Mar 2023 00:19:25 GMT expires: - '-1' pragma: @@ -2537,7 +1841,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574403.238.443.188687|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580366.488.441.275677|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2564,26 +1868,26 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1670539202126&to=1673217602126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '[]' + string: '{"message":"id is invalid","traceID":"77a787207c3e7b8c6466ef992d196caa"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aUmL5tqxUR4grrhyBC++qg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jSjL82+8hZDBpnV5A1m7+w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:02 GMT + - Sun, 12 Mar 2023 00:19:26 GMT expires: - '-1' pragma: @@ -2591,7 +1895,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574403.399.436.763492|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580367.065.440.861544|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2602,8 +1906,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -2618,26 +1922,26 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1667860802126&to=1670539202126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder response: body: - string: '[]' + string: '{"message":"folder not found","status":"not-found"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aF/VtfAMsm9dy+6OX69cSA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TQ4LVj/qiVulg/MymQNX6Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:02 GMT + - Sun, 12 Mar 2023 00:19:26 GMT expires: - '-1' pragma: @@ -2645,8 +1949,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574403.563.441.380864|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580367.24.436.411587|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2656,8 +1960,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -2672,26 +1976,27 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1665182402126&to=1667860802126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '[]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":26,"uid":"0XPIK5-4k","title":"Test + Folder"}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cXfiv7qO3po3KMeeUNyqBQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AsA1hoGFJv6LshXdxfQ4/g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:02 GMT + - Sun, 12 Mar 2023 00:19:26 GMT expires: - '-1' pragma: @@ -2699,7 +2004,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574403.724.442.281293|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580367.453.440.485432|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2713,7 +2018,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"dashboard": {"title": "Test Dashboard"}, "folderId": 26, "overwrite": + false}' headers: Accept: - '*/*' @@ -2721,31 +2027,33 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '78' User-Agent: - python-requests/2.26.0 content-type: - application/json - method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1662504002126&to=1665182402126 + method: POST + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '[]' + string: '{"id":27,"slug":"test-dashboard","status":"success","uid":"adUIF5aVz","url":"/d/adUIF5aVz/test-dashboard","version":1}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-erFXpXjtaAbQlCNZb74YaA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VTWQUnoQedWab/eYE6nYRA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:02 GMT + - Sun, 12 Mar 2023 00:19:26 GMT expires: - '-1' pragma: @@ -2753,7 +2061,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574403.884.438.444675|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580367.646.440.922734|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2780,26 +2088,30 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1659825602126&to=1662504002126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '[]' + string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"hhsIK5aVk","orgId":1,"name":"Test + Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-mDqb0TmRLimBs9/XbAKI7Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dl2Z7tG5QhzweczxLWM9fA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:03 GMT + - Sun, 12 Mar 2023 00:19:27 GMT expires: - '-1' pragma: @@ -2807,8 +2119,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574404.045.439.186844|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580367.98.437.279404|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2834,26 +2146,55 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1657147202126&to=1659825602126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=1 response: body: - string: '[]' + string: '[{"id":14,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure + / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Yo38mcvnz","title":"Azure + / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"INH9berMk","title":"Azure + / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"tQZAMYrMk","title":"Azure + / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure + / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByRG","title":"Azure + / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure + / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure + / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":17,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"adUIF5aVz","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/adUIF5aVz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":26,"folderUid":"0XPIK5-4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","sortMeta":0},{"id":23,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive - content-length: - - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-k1rGun1te9/znJCBftq7Iw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-QXQh/UgahuuG2ilNEO41sA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:03 GMT + - Sun, 12 Mar 2023 00:19:27 GMT expires: - '-1' pragma: @@ -2861,10 +2202,12 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574404.202.442.946881|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580368.161.439.39610|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains + transfer-encoding: + - chunked x-content-type-options: - nosniff x-frame-options: @@ -2888,26 +2231,28 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1654468802126&to=1657147202126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz response: body: - string: '[]' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:26Z","updated":"2023-03-12T00:19:26Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"0XPIK5-4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test + Dashboard","uid":"adUIF5aVz","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-QaAJS3j+I70tJpZNEua3Tw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FbVhcGqNoY84VnKtB1XFEw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:03 GMT + - Sun, 12 Mar 2023 00:19:27 GMT expires: - '-1' pragma: @@ -2915,8 +2260,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574404.36.438.978245|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580368.336.441.545101|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2942,7 +2287,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1651790402126&to=1654468802126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=2 response: body: string: '[]' @@ -2954,14 +2299,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/hIWupFBikAguHeHx19A7A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-4vag+u7Zoiba4z9wtcSOpA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:03 GMT + - Sun, 12 Mar 2023 00:19:27 GMT expires: - '-1' pragma: @@ -2969,8 +2314,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574404.604.441.62265|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580368.557.438.158021|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2996,26 +2341,27 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1649112002126&to=1651790402126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-folder response: body: - string: '[]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor","uri":"db/azure-monitor","url":"/dashboards/f/az-mon/azure-monitor","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":13,"uid":"geneva","title":"Geneva","uri":"db/geneva","url":"/dashboards/f/geneva/geneva","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":26,"uid":"0XPIK5-4k","title":"Test + Folder","uri":"db/test-folder","url":"/dashboards/f/0XPIK5-4k/test-folder","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '546' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6HQgSeio0sor8780/BS2Bw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-wigqMP/H6PtadRDRvKkG2w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:03 GMT + - Sun, 12 Mar 2023 00:19:27 GMT expires: - '-1' pragma: @@ -3023,7 +2369,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574404.782.443.532188|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580368.765.440.734731|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3050,26 +2396,26 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/annotations?type=annotation&limit=5000&from=1646433602126&to=1649112002126 + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k response: body: - string: '[]' + string: '{"id":26,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:25Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:25Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '2' + - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VLtfC7pWk4Iv8LHByyzoXQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nGK0KPUEwFciwFgyBh5leA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:03 GMT + - Sun, 12 Mar 2023 00:19:27 GMT expires: - '-1' pragma: @@ -3077,8 +2423,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574404.94.435.366585|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580368.968.440.623988|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3104,30 +2450,28 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k/permissions response: body: - string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure - Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"QXfJ75a4z","orgId":1,"name":"Test - Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure - Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' + string: '[{"folderId":26,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Viewer","permission":1,"permissionName":"View","uid":"0XPIK5-4k","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/0XPIK5-4k/test-folder","inherited":false},{"folderId":26,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Editor","permission":2,"permissionName":"Edit","uid":"0XPIK5-4k","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/0XPIK5-4k/test-folder","inherited":false}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '1155' + - '783' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DGpFqQjRWLxatW+LP1AGTw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/UjGLZoDK7Dxzvnp9FqHuA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:04 GMT + - Sun, 12 Mar 2023 00:19:28 GMT expires: - '-1' pragma: @@ -3135,8 +2479,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574405.1.442.732545|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580369.135.437.536712|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3165,7 +2509,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"2dcca1951f5068c0aaed641a98b84cac"}' + string: '{"message":"id is invalid","traceID":"659174b56051527d0f3a01318ca3f859"}' headers: cache-control: - no-cache @@ -3174,14 +2518,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ja24uUgulY/m6PKg7Kw5XQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ntCAAfs1ax4fB4sHlZ0bMQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:04 GMT + - Sun, 12 Mar 2023 00:19:28 GMT expires: - '-1' pragma: @@ -3189,7 +2533,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574405.42.442.420268|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678580369.596.442.91710|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3228,14 +2572,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CMtl/5qwnKAiopaPtkrJXA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Fj2rQr79Z+piZMg56KKl5A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:04 GMT + - Sun, 12 Mar 2023 00:19:29 GMT expires: - '-1' pragma: @@ -3243,7 +2587,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574405.591.443.217971|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580369.845.441.541688|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3273,7 +2617,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"TOB175-Vz","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":26,"uid":"0XPIK5-4k","title":"Test Folder"}]' headers: cache-control: @@ -3283,14 +2627,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PFXUYOOVzDISyRLSWnLdqg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SERe8R4UbAVy6WBH7cJ6hA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:04 GMT + - Sun, 12 Mar 2023 00:19:29 GMT expires: - '-1' pragma: @@ -3298,7 +2642,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574405.771.438.357084|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580370.346.437.317383|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3327,7 +2671,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k response: body: string: '' @@ -3339,14 +2683,14 @@ interactions: content-length: - '0' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-IrQQm83cXA3C2YpUTsMxrA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-p+FFuiu8VQ11XDrlAt6mkw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:05 GMT + - Sun, 12 Mar 2023 00:19:29 GMT expires: - '-1' pragma: @@ -3354,8 +2698,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574405.955.440.465640|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580370.5.440.119003|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3384,7 +2728,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -3394,14 +2738,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rVn6A0X47yR3vHq68qi2MQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TueKgmbAsMI5WecqsvvV3A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:05 GMT + - Sun, 12 Mar 2023 00:19:29 GMT expires: - '-1' pragma: @@ -3409,7 +2753,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574406.342.443.511111|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580370.877.443.284680|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3438,7 +2782,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/uid/QXfJ75a4z + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/uid/hhsIK5aVk response: body: string: '{"id":3,"message":"Data source deleted"}' @@ -3450,14 +2794,14 @@ interactions: content-length: - '40' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7M6eTELtLirT4ffmFTVDiQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TXrfg6kybcIzw676D0Dn0w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:05 GMT + - Sun, 12 Mar 2023 00:19:30 GMT expires: - '-1' pragma: @@ -3465,8 +2809,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574406.553.435.5991|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580371.059.438.926556|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3479,10 +2823,10 @@ interactions: code: 200 message: OK - request: - body: '{"id": 24, "uid": "TOB175-Vz", "title": "Test Folder", "url": "/dashboards/f/TOB175-Vz/test-folder", + body: '{"id": 26, "uid": "0XPIK5-4k", "title": "Test Folder", "url": "/dashboards/f/0XPIK5-4k/test-folder", "hasAcl": false, "canSave": true, "canEdit": true, "canAdmin": true, "canDelete": - true, "createdBy": "example@example.com", "created": "2023-03-11T22:39:58Z", - "updatedBy": "example@example.com", "updated": "2023-03-11T22:39:58Z", "version": + true, "createdBy": "example@example.com", "created": "2023-03-12T00:19:25Z", + "updatedBy": "example@example.com", "updated": "2023-03-12T00:19:25Z", "version": 1, "parentUid": ""}' headers: Accept: @@ -3501,23 +2845,23 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":26,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:40:05.8826982Z","updatedBy":"example@example.com","updated":"2023-03-11T22:40:05.8826983Z","version":1,"parentUid":""}' + string: '{"id":28,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:30.391850138Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:30.391850238Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '348' + - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ixPAzdbhgzsUtBnk2RUKXw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x9KniboExn1CVNVR8AfGvQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:05 GMT + - Sun, 12 Mar 2023 00:19:30 GMT expires: - '-1' pragma: @@ -3525,8 +2869,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574406.859.439.60433|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580371.368.441.445909|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3552,10 +2896,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/TOB175-Vz + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k response: body: - string: '{"id":26,"uid":"TOB175-Vz","title":"Test Folder","url":"/dashboards/f/TOB175-Vz/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:40:05Z","updatedBy":"example@example.com","updated":"2023-03-11T22:40:05Z","version":1,"parentUid":""}' + string: '{"id":28,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:30Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:30Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -3564,14 +2908,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Zcdk1xAyzcmbGQGh6XisFQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-biedxcSetTuQRRvb/yuYfQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:06 GMT + - Sun, 12 Mar 2023 00:19:30 GMT expires: - '-1' pragma: @@ -3579,8 +2923,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574407.047.441.903613|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580371.56.442.201572|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3593,8 +2937,8 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"id": null, "title": "Test Dashboard", "uid": "IZE175-4k", - "version": 1}, "folderId": 26, "overwrite": true}' + body: '{"dashboard": {"id": null, "title": "Test Dashboard", "uid": "adUIF5aVz", + "version": 1}, "folderId": 28, "overwrite": true}' headers: Accept: - '*/*' @@ -3612,7 +2956,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":27,"slug":"test-dashboard","status":"success","uid":"IZE175-4k","url":"/d/IZE175-4k/test-dashboard","version":1}' + string: '{"id":29,"slug":"test-dashboard","status":"success","uid":"adUIF5aVz","url":"/d/adUIF5aVz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -3621,14 +2965,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-feHza1INJ2fU65R8M4rxgA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MErbTckUgfnWaWNlcQQihA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:06 GMT + - Sun, 12 Mar 2023 00:19:30 GMT expires: - '-1' pragma: @@ -3636,8 +2980,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574407.21.441.415556|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580371.743.438.184143|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3673,7 +3017,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '{"message":"data source with the same name already exists","traceID":"47c00830241f9bd218e66151bdbb9e94"}' + string: '{"message":"data source with the same name already exists","traceID":"3f9a7f48671c68d11753d1fd8393db45"}' headers: cache-control: - no-cache @@ -3682,14 +3026,14 @@ interactions: content-length: - '104' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F1ugnVX47zxT49fxKF0blg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MjIIp9j+msj5zLCQXfUWRw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:06 GMT + - Sun, 12 Mar 2023 00:19:30 GMT expires: - '-1' pragma: @@ -3697,7 +3041,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574407.411.442.531296|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580371.936.440.772980|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3733,7 +3077,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '{"message":"data source with the same name already exists","traceID":"1b947a827cdb14f31b82b69fd2586398"}' + string: '{"message":"data source with the same name already exists","traceID":"8613b0107bb3cd53c5cf3277af1e2706"}' headers: cache-control: - no-cache @@ -3742,14 +3086,14 @@ interactions: content-length: - '104' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vBODLm9vSHyCDjR7ZdhPEg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WdAUhWhmeAoZodZNw346gQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:06 GMT + - Sun, 12 Mar 2023 00:19:31 GMT expires: - '-1' pragma: @@ -3757,7 +3101,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574407.574.436.134272|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580372.106.440.537547|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3771,7 +3115,7 @@ interactions: code: 409 message: Conflict - request: - body: '{"id": 3, "uid": "QXfJ75a4z", "orgId": 1, "name": "Test Azure Monitor Data + body: '{"id": 3, "uid": "hhsIK5aVk", "orgId": 1, "name": "Test Azure Monitor Data Source", "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", "typeLogoUrl": "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, @@ -3794,7 +3138,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":4,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":4,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -3805,14 +3149,14 @@ interactions: content-length: - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lNdSw7DNj/nPy2w8tfz/6w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-D9IHkhwWRRWNowxDTU4ScA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:06 GMT + - Sun, 12 Mar 2023 00:19:31 GMT expires: - '-1' pragma: @@ -3820,7 +3164,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574407.745.442.701430|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580372.287.438.463691|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3850,7 +3194,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"QXfJ75a4z","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -3860,14 +3204,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-P0OqncDGgU3YVzF648HMrw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-j3+plhdeYAvhLTT3LI2CtA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:07 GMT + - Sun, 12 Mar 2023 00:19:31 GMT expires: - '-1' pragma: @@ -3875,7 +3219,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574408.067.442.473200|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580372.632.441.443922|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3905,7 +3249,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"8d4a38424d541c55abefe2dbd99bb0c4"}' + string: '{"message":"id is invalid","traceID":"d5b4c8539e3cf1bf551142b2c5bb4794"}' headers: cache-control: - no-cache @@ -3914,14 +3258,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-e/XPEFiVkG3KHW3CF9FNfA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bVpL+sXHcgaNFxRsBWrn1A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:07 GMT + - Sun, 12 Mar 2023 00:19:31 GMT expires: - '-1' pragma: @@ -3929,7 +3273,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574408.346.437.304328|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580372.914.440.518011|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3968,14 +3312,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-c6iAzbYVa7GPFvC7Co8VPw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XmJ29TCbtVTmlhNY+0/rlg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:07 GMT + - Sun, 12 Mar 2023 00:19:32 GMT expires: - '-1' pragma: @@ -3983,8 +3327,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574408.551.441.871743|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580373.097.437.18480|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -4013,7 +3357,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":26,"uid":"TOB175-Vz","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":28,"uid":"0XPIK5-4k","title":"Test Folder"}]' headers: cache-control: @@ -4023,14 +3367,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yBLm3Kjt7OaPl6i4037OIg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hbpQPKPzkS9OyGEbUqAspw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:07 GMT + - Sun, 12 Mar 2023 00:19:32 GMT expires: - '-1' pragma: @@ -4038,7 +3382,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574408.735.440.817307|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580373.279.441.994744|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4065,12 +3409,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:06Z","updated":"2023-03-11T22:40:06Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"TOB175-Vz","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test - Dashboard","uid":"IZE175-4k","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:30Z","updated":"2023-03-12T00:19:30Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":28,"folderUid":"0XPIK5-4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":29,"title":"Test + Dashboard","uid":"adUIF5aVz","version":1}}' headers: cache-control: - no-cache @@ -4079,14 +3423,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DZ3IzXmCA7pY3UTspBnQZw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F8PE3YcDN3Bu4uAqjyua+A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:08 GMT + - Sun, 12 Mar 2023 00:19:32 GMT expires: - '-1' pragma: @@ -4094,8 +3438,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574409.02.437.642790|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580373.567.438.536368|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -4126,7 +3470,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-11T22:35:31.7338614Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-11T22:35:31.7338614Z"},"identity":{"principalId":"2d477ccc-31f3-4b5f-845e-631b3bcc14ab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:14:27.2170532Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:14:27.2170532Z"},"identity":{"principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -4135,9 +3479,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 11 Mar 2023 22:40:08 GMT + - Sun, 12 Mar 2023 00:19:33 GMT etag: - - '"d7007bef-0000-0600-0000-640d03150000"' + - '"d800ea09-0000-0600-0000-640d1a590000"' expires: - '-1' pragma: @@ -4172,7 +3516,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":18,"uid":"geneva","title":"Geneva"}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"}]' headers: cache-control: - no-cache @@ -4181,14 +3525,14 @@ interactions: content-length: - '91' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aACGO8pQrki8eSG+v5+wOg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bLs5n5CVpvA3RstNJjRsnw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:10 GMT + - Sun, 12 Mar 2023 00:19:35 GMT expires: - '-1' pragma: @@ -4196,7 +3540,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574409.813.440.644018|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580374.412.442.863798|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4237,14 +3581,14 @@ interactions: content-length: - '759' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-QxEnbkSJ9GAwlfWcHlsvKg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ezdnCyi+NKYiL9hHiEMRfw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:10 GMT + - Sun, 12 Mar 2023 00:19:35 GMT expires: - '-1' pragma: @@ -4252,7 +3596,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574411.434.435.431572|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580376.225.435.815621|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4284,7 +3628,7 @@ interactions: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"QXfJ75a4z","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -4295,14 +3639,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xMJYc0oc/7vKc42XZU1f/w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TqR+HCvm1Z+WwGVAwd4zUg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:10 GMT + - Sun, 12 Mar 2023 00:19:35 GMT expires: - '-1' pragma: @@ -4310,7 +3654,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574411.885.440.133321|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580376.459.440.134158|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4340,52 +3684,52 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":7,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":14,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"IZE175-4k","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/IZE175-4k/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":26,"folderUid":"TOB175-Vz","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":17,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":29,"uid":"adUIF5aVz","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/adUIF5aVz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":28,"folderUid":"0XPIK5-4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","sortMeta":0},{"id":23,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dHU5R2uhJFEnH9LtP3SLuQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-puVnjJDvRMCaI8QTIv6stw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:11 GMT + - Sun, 12 Mar 2023 00:19:35 GMT expires: - '-1' pragma: @@ -4393,8 +3737,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574412.074.435.669038|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580376.65.436.731201|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4434,14 +3778,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ZE4k5SI1YeEjkDGzQoSFZg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-re9CIIRCxysNwVxP3Nq6Hw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:11 GMT + - Sun, 12 Mar 2023 00:19:35 GMT expires: - '-1' pragma: @@ -4449,7 +3793,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574412.258.442.993910|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580376.862.439.968329|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4479,9 +3823,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/OSBzdgnnz response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"agent-qos\",\"url\":\"/d/OSBzdgnnz/agent-qos\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:27Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":12,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"agentQoS.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"agent-qos\",\"url\":\"/d/OSBzdgnnz/agent-qos\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:34Z\",\"updated\":\"2023-03-12T00:13:34Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"agentQoS.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, - 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"type\":\"dashboard\"}]},\"description\":\"\",\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":23,\"links\":[],\"panels\":[{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"options\":{\"content\":\"\\u003cdiv + 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"type\":\"dashboard\"}]},\"description\":\"\",\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":14,\"links\":[],\"panels\":[{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"options\":{\"content\":\"\\u003cdiv style=\\\"padding: 1em\\\"\\u003e\\n \\u003cp\\u003eThis dashboard helps understand and diagnose monitoring agent health. It gives an overview of:\\u003cbr\\u003e\\u003c/p\\u003e\\n \ \\u003cul\\u003e\\n \\u003cli\\u003eData Quality (Data loss and latency @@ -4611,21 +3955,21 @@ interactions: Event Names\",\"type\":\"piechart\"}],\"refresh\":false,\"schemaVersion\":30,\"style\":\"dark\",\"tags\":[],\"templating\":{\"list\":[{\"allValue\":null,\"current\":{},\"datasource\":\"Geneva Datasource\",\"definition\":\"accounts()\",\"description\":\"The Geneva metrics account name\",\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Account\",\"multi\":false,\"name\":\"account\",\"options\":[],\"query\":\"accounts()\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":1,\"type\":\"query\"}]},\"time\":{\"from\":\"now-7d\",\"to\":\"now\"},\"timepicker\":{},\"timezone\":\"\",\"title\":\"Agent - QoS\",\"uid\":\"OSBzdgnnz\",\"version\":2}}" + QoS\",\"uid\":\"OSBzdgnnz\",\"version\":1}}" headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YMFMGG6H1/FQCeUTeEeM8g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-918u4DNValVPk8FoFu6SIA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:11 GMT + - Sun, 12 Mar 2023 00:19:36 GMT expires: - '-1' pragma: @@ -4633,7 +3977,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574412.446.437.475145|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580377.047.440.635105|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4665,9 +4009,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/54KhiZ7nz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AKSLinuxSample.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AKSLinuxSample.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":14,"links":[],"liveNow":false,"panels":[{"datasource":null,"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":6,"options":{"content":"This + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":18,"links":[],"liveNow":false,"panels":[{"datasource":null,"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":6,"options":{"content":"This dashboard shows telemetry from the machine running the AKSGenevaSample Application.\n\u003cbr\u003e\nThe dashboard will contain data only if your service (AKSGenevaSample) is running and the Geneva Agent is set up correctly.\n\u003cbr\u003e\nTo set up a sample @@ -4690,14 +4034,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-glunjHFbMi2CqaJOKKcqdg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-JScdhn4vvmQOUBOs2iM/Ug';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:11 GMT + - Sun, 12 Mar 2023 00:19:36 GMT expires: - '-1' pragma: @@ -4705,8 +4049,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574412.68.441.356379|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580377.267.438.679387|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4737,9 +4081,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6uRDjTNnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"app-detail","url":"/d/6uRDjTNnz/app-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AppDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"app-detail","url":"/d/6uRDjTNnz/app-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AppDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":20,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":15,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster and an application, this widget shows it''s health timeline - time when the application sent Ok, Warning and Error as it''s health status","fieldConfig":{"defaults":{"color":{"mode":"continuous-GrYlRd"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":0,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]}]},"gridPos":{"h":15,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"customSeriesNaming":"{HealthState} @@ -4773,14 +4117,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WCHBjLxf9xCPviypK+dH1w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kDh3kbWOuMtFR6Y99TV2ig';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:11 GMT + - Sun, 12 Mar 2023 00:19:36 GMT expires: - '-1' pragma: @@ -4788,7 +4132,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574412.908.441.213524|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580377.463.440.234598|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4820,10 +4164,10 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/dyzn5SK7z response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-alert-consumption\",\"url\":\"/d/dyzn5SK7z/azure-alert-consumption\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:26Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-alert-consumption\",\"url\":\"/d/dyzn5SK7z/azure-alert-consumption\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:34Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"v1Alerts.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__elements\":[],\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"8.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"A - summary of all alerts for the subscription and other filters selected\",\"editable\":true,\"id\":7,\"links\":[],\"liveNow\":false,\"panels\":[{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Total + summary of all alerts for the subscription and other filters selected\",\"editable\":true,\"id\":12,\"links\":[],\"liveNow\":false,\"panels\":[{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Total Alerts\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev0\\u0026var-sev=Sev1\\u0026var-sev=Sev2\\u0026var-sev=Sev3\\u0026var-sev=Sev4\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":0,\"y\":0},\"id\":4,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) @@ -4904,14 +4248,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6n7IQzuPLyvavlmLz7VHAg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3RoN3BEyJ78WDuqTBLT14w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:12 GMT + - Sun, 12 Mar 2023 00:19:36 GMT expires: - '-1' pragma: @@ -4919,8 +4263,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574413.086.437.402523|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580377.65.443.424121|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4951,12 +4295,12 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Yo38mcvnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsights.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Apps via different metrics for app monitoring through Application - Insights.","editable":true,"id":9,"links":[],"liveNow":false,"panels":[{"collapsed":false,"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":52,"panels":[],"title":"Azure + Insights.","editable":true,"id":10,"links":[],"liveNow":false,"panels":[{"collapsed":false,"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":52,"panels":[],"title":"Azure Portal Links","type":"row"},{"gridPos":{"h":3,"w":5,"x":0,"y":1},"id":10,"options":{"content":"\u003ca style=\"color: inherit;\" href=\"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/overview\" target=\"_blank\"\u003e\n \u003cdiv\u003e\n \u003ch3 style=\"color: #a16feb\"\u003e @@ -5094,14 +4438,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-HtkDlY/pC8P37oLvkwroNg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-I2nTGU6QMkvOwf7OKA+tRg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:12 GMT + - Sun, 12 Mar 2023 00:19:36 GMT expires: - '-1' pragma: @@ -5109,8 +4453,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574413.323.440.161442|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580377.857.442.94651|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -5141,7 +4485,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AppInsightsAvTestGeoMap response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-11T22:34:26Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsightsGeoMap.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"geomap","name":"Geomap","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"editable":true,"id":2,"iteration":null,"liveNow":false,"panels":[{"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":18,"options":{"content":"\u003cdiv @@ -5297,14 +4641,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2jDQg48fdvqHlu6jnLIB2w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1Qv3vF8FQATPMl6BxGRpLA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:12 GMT + - Sun, 12 Mar 2023 00:19:37 GMT expires: - '-1' pragma: @@ -5312,7 +4656,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574413.616.442.925753|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580378.171.443.928542|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -5344,11 +4688,11 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/INH9berMk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-11T22:34:26Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"cosmosdb.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Cosmos DB overview, throughput, requests, - storage, availability latency, system and account management.","editable":true,"id":3,"links":[],"panels":[{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":1},"hiddenSeries":false,"id":2,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + storage, availability latency, system and account management.","editable":true,"id":11,"links":[],"panels":[{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":1},"hiddenSeries":false,"id":2,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure @@ -5448,21 +4792,21 @@ interactions: Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{"selected":false,"text":"Microsoft.DocumentDb/databaseAccounts","value":"Microsoft.DocumentDb/databaseAccounts"},"description":null,"error":null,"hide":0,"includeAll":false,"label":"Namespace","multi":false,"name":"ns","options":[{"selected":true,"text":"Microsoft.DocumentDb/databaseAccounts","value":"Microsoft.DocumentDb/databaseAccounts"}],"query":"Microsoft.DocumentDb/databaseAccounts","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"datasource":"${ds}","definition":"ResourceNames($sub, $rg, $ns)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"resource","options":[],"query":"ResourceNames($sub, $rg, $ns)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-6h","to":"now"},"title":"Azure - / Insights / Cosmos DB","uid":"INH9berMk","version":1}}' + / Insights / Cosmos DB","uid":"INH9berMk","version":2}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dLsyG650sh5cX8F30fafIw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Zi6CHXHGj7+Muy5uwj2eUA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:12 GMT + - Sun, 12 Mar 2023 00:19:37 GMT expires: - '-1' pragma: @@ -5470,7 +4814,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574413.873.436.454952|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580378.408.437.244872|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -5502,7 +4846,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/8UDB1s3Gk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"dataexplorercluster.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Data Explorer Cluster Resource overview, @@ -6617,21 +5961,21 @@ interactions: Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{"selected":false,"text":"Microsoft.Kusto/clusters","value":"Microsoft.Kusto/clusters"},"description":null,"error":null,"hide":0,"includeAll":false,"label":"Namespace","multi":false,"name":"ns","options":[{"selected":true,"text":"Microsoft.Kusto/clusters","value":"Microsoft.Kusto/clusters"}],"query":"Microsoft.Kusto/clusters","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"datasource":"$ds","definition":"ResourceNames($sub, $rg, $ns)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"resource","options":[],"query":"ResourceNames($sub, $rg, $ns)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{},"datasource":"$ds","definition":"workspaces()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Workspace","multi":false,"name":"ws","options":[],"query":"workspaces()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-12h","to":"now"},"title":"Azure - / Insights / Data Explorer Clusters","uid":"8UDB1s3Gk","version":2}}' + / Insights / Data Explorer Clusters","uid":"8UDB1s3Gk","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-IKT8QoZ7z7NeN7aIWH9XoQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9C6FO0Dflr9WZti8cufKUQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:13 GMT + - Sun, 12 Mar 2023 00:19:37 GMT expires: - '-1' pragma: @@ -6639,7 +5983,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574414.177.440.730015|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580378.669.441.692988|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -6671,10 +6015,10 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/tQZAMYrMk response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-insights-key-vaults\",\"url\":\"/d/tQZAMYrMk/azure-insights-key-vaults\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:26Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-insights-key-vaults\",\"url\":\"/d/tQZAMYrMk/azure-insights-key-vaults\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:33Z\",\"updated\":\"2023-03-12T00:13:33Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"keyvault.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"7.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"graph\",\"name\":\"Graph\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"The - dashboard provides insights of Azure Key Vaults overview, failures and operations.\",\"editable\":true,\"id\":11,\"links\":[],\"panels\":[{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":0},\"id\":25,\"panels\":[],\"title\":\"Overview\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"percentage\",\"steps\":[{\"color\":\"green\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":7,\"w\":19,\"x\":0,\"y\":1},\"id\":9,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"none\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + dashboard provides insights of Azure Key Vaults overview, failures and operations.\",\"editable\":true,\"id\":5,\"links\":[],\"panels\":[{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":0},\"id\":25,\"panels\":[],\"title\":\"Overview\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"percentage\",\"steps\":[{\"color\":\"green\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":7,\"w\":19,\"x\":0,\"y\":1},\"id\":9,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"none\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"Availability\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 @@ -6874,21 +6218,21 @@ interactions: Group\",\"multi\":false,\"name\":\"rg\",\"options\":[],\"query\":\"ResourceGroups($sub)\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tags\":[],\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false},{\"hide\":2,\"label\":\"Namespace\",\"name\":\"ns\",\"query\":\"Microsoft.KeyVault/vaults\",\"skipUrlSync\":false,\"type\":\"constant\"},{\"allValue\":null,\"current\":{},\"datasource\":\"${ds}\",\"definition\":\"ResourceNames($sub, $rg, $ns)\",\"description\":null,\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Resource\",\"multi\":false,\"name\":\"resource\",\"options\":[],\"query\":\"ResourceNames($sub, $rg, $ns)\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tags\":[],\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false},{\"allValue\":null,\"current\":{},\"datasource\":\"${ds}\",\"definition\":\"Workspaces($sub)\",\"description\":null,\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Workspace\",\"multi\":false,\"name\":\"ws\",\"options\":[],\"query\":\"Workspaces($sub)\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":0,\"tagValuesQuery\":\"\",\"tags\":[],\"tagsQuery\":\"\",\"type\":\"query\",\"useTags\":false}]},\"time\":{\"from\":\"now-24h\",\"to\":\"now\"},\"title\":\"Azure - / Insights / Key Vaults\",\"uid\":\"tQZAMYrMk\",\"version\":2}}" + / Insights / Key Vaults\",\"uid\":\"tQZAMYrMk\",\"version\":1}}" headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-KmTW04WftFtVIjZGhyvu8Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nGvBIo1/2EuFMD81jYVYYw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:13 GMT + - Sun, 12 Mar 2023 00:19:38 GMT expires: - '-1' pragma: @@ -6896,8 +6240,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574414.531.443.867667|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580379.049.437.13988|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -6928,7 +6272,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/3n2E8CrGk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:54Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"storage.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"9.0.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"A dashboard that provides @@ -7244,21 +6588,21 @@ interactions: Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":2,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"ResourceNames($sub, $rg, $ns)","hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"resource","options":[],"query":"ResourceNames($sub, $rg, $ns)","refresh":2,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-6h","to":"now"},"timezone":"","title":"Azure - / Insights / Storage Accounts","uid":"3n2E8CrGk","version":2}}' + / Insights / Storage Accounts","uid":"3n2E8CrGk","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yHNaFCBDsrMgivjMMnUsbA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-tgwhmBbltlr8SQMOw7OCVw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:13 GMT + - Sun, 12 Mar 2023 00:19:38 GMT expires: - '-1' pragma: @@ -7266,7 +6610,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574414.774.435.6779|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678580379.285.436.55587|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -7298,12 +6642,12 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByRG response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsRG.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"This dashboard shows the performance and health of Azure Virtual Machines via different metrics - collected by Azure Monitor VM Insights. Filter data by Resource Group","editable":true,"id":10,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv + collected by Azure Monitor VM Insights. Filter data by Resource Group","editable":true,"id":9,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003eWelcome to the Azure Monitor data source for Grafana. To learn more about it, visit our \u003ca href=\"https://grafana.com/docs/grafana/latest/datasources/azuremonitor/\" @@ -8414,14 +7758,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3hsoI/m122OUtO9gFBZMug';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-UIXTte+49G6bRxKKa9QdPA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:14 GMT + - Sun, 12 Mar 2023 00:19:38 GMT expires: - '-1' pragma: @@ -8429,7 +7773,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574415.042.441.164861|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580379.564.442.399547|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -8461,7 +7805,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByWS response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsWs.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"This dashboard shows @@ -9515,14 +8859,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kjbnnk0FrhVWVPTa+dDj6w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-qtlh+HO6r2mdAq2jjpuaWA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:14 GMT + - Sun, 12 Mar 2023 00:19:39 GMT expires: - '-1' pragma: @@ -9530,7 +8874,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574415.336.438.482180|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580379.983.440.982605|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9562,7 +8906,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Mtwt2BV7k response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"arg.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.2.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Resource Graph Explorer overview, compute, @@ -9570,7 +8914,7 @@ interactions: dashboard we sourced from the [Azure Inventory Workbook](https://github.com/scautomation/Azure-Inventory-Workbook) by Billy York. You can find more sample Azure Resource Graph queries by Billy at this [GitHub](https://github.com/scautomation/AzureResourceGraph-Examples) - repository.","editable":true,"gnetId":14986,"id":5,"links":[{"asDropdown":false,"icon":"external + repository.","editable":true,"gnetId":14986,"id":3,"links":[{"asDropdown":false,"icon":"external link","includeVars":false,"keepTime":false,"tags":[],"targetBlank":true,"title":"Azure Resource Graph queries by Billy York","tooltip":"See more","type":"link","url":"https://github.com/scautomation/AzureResourceGraph-Examples"}],"liveNow":false,"panels":[{"collapsed":false,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[],"title":"Overview","type":"row"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":6,"w":7,"x":0,"y":1},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"Resources | summarize count(type)","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure @@ -10196,21 +9540,21 @@ interactions: Resource Graph","refId":"A","samplingType":"","service":"metric","subscriptions":["$subscriptions"],"useBackends":false,"useCustomSeriesNaming":false}],"title":"Azure Security Center Secure Controls Score by Controls","type":"table"}],"title":"Monitoring \u0026 Security","type":"row"}],"refresh":"","schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[{"current":{},"hide":0,"includeAll":false,"label":"Datasource","multi":false,"name":"ds","options":[],"query":"grafana-azure-monitor-datasource","queryValue":"","refresh":1,"regex":"","skipUrlSync":false,"type":"datasource"},{"allValue":null,"current":{},"datasource":"${ds}","definition":"Subscriptions()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Subscription(s)","multi":true,"name":"subscriptions","options":[],"query":"Subscriptions()","refresh":1,"regex":"","skipUrlSync":false,"sort":5,"type":"query"}]},"time":{"from":"now-1h","to":"now"},"title":"Azure - / Resources Overview","uid":"Mtwt2BV7k","version":2}}' + / Resources Overview","uid":"Mtwt2BV7k","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AelNmMApLrv/moX988u92A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-96heUuNDCgt6i1WF0HpwqQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:14 GMT + - Sun, 12 Mar 2023 00:19:39 GMT expires: - '-1' pragma: @@ -10218,7 +9562,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574415.632.440.299041|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580380.276.442.319063|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10250,9 +9594,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/xLERdASnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"cluster-detail","url":"/d/xLERdASnz/cluster-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"ClusterDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"cluster-detail","url":"/d/xLERdASnz/cluster-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"ClusterDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":16,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":17,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster, this widget shows it''s health timeline - time at which each health state value was reported. For a group of clusters, it shows the percentage of each health state reported @@ -10323,14 +9667,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-o6tY58n5A/mVSL8JgtkBdw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vxYIl6Wy+NsAef9ANC2K5w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:14 GMT + - Sun, 12 Mar 2023 00:19:39 GMT expires: - '-1' pragma: @@ -10338,7 +9682,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574415.884.439.338585|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580380.642.437.260026|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10370,9 +9714,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/QTVw7iK7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"geneva-health","url":"/d/QTVw7iK7z/geneva-health","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-11T22:34:26Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"Health.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"geneva-health","url":"/d/QTVw7iK7z/geneva-health","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"Health.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"datasource":"Geneva Datasource","enable":true,"iconColor":"light-blue","name":"Geneva Health Annotations","target":{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Watchdog - Health","isAnnotationsMode":true,"limit":100,"matchAny":false,"metric":"","metricsQueryType":"ui","namespace":"","samplingType":"","selectedWatchdogResourceVar":"$nodeIds","service":"health","tags":[],"type":"dashboard","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":13,"links":[],"panels":[{"datasource":"Geneva + Health","isAnnotationsMode":true,"limit":100,"matchAny":false,"metric":"","metricsQueryType":"ui","namespace":"","samplingType":"","selectedWatchdogResourceVar":"$nodeIds","service":"health","tags":[],"type":"dashboard","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":19,"links":[],"panels":[{"datasource":"Geneva Datasource","gridPos":{"h":21,"w":6,"x":0,"y":0},"id":2,"options":{"monitorNameVar":"$monitorName","monitorVar":"$monitor","orientation":"vertical","resourceHealthVar":"$nodeIds","resourceNameVar":"$selectedRes"},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","service":"health","topologyNodeId":"$res","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Topology","type":"geneva-health-panel"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":0},"mappings":[{"options":{"0":{"color":"red","index":0,"text":"Unhealthy"},"1":{"color":"green","index":1,"text":"Healthy"},"2":{"color":"orange","index":2,"text":"Degraded"}},"type":"value"}],"thresholds":{"mode":"absolute","steps":[{"color":"text","value":null},{"color":"red","value":0},{"color":"green","value":1},{"color":"#EAB839","value":2}]}},"overrides":[]},"gridPos":{"h":7,"w":18,"x":6,"y":0},"id":4,"options":{"alignValue":"left","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Resource Health","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","selectedResourcesVar":"$nodeIds","service":"health","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}],"title":"Resource @@ -10385,21 +9729,21 @@ interactions: Datasource","definition":"Accounts()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"acc","options":[],"query":"Accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva Datasource","definition":"HealthResources($acc)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Health Resource","multi":false,"name":"res","options":[],"query":"HealthResources($acc)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{"selected":false,"text":"","value":""},"description":null,"error":null,"hide":2,"includeAll":false,"label":null,"multi":false,"name":"nodeIds","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"description":null,"error":null,"hide":2,"includeAll":false,"label":null,"multi":false,"name":"selectedRes","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"current":{},"hide":2,"includeAll":false,"multi":false,"name":"monitor","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"current":{},"hide":2,"includeAll":false,"multi":false,"name":"monitorName","options":[],"query":"","skipUrlSync":false,"type":"custom"}]},"time":{"from":"now-1h","to":"now"},"timepicker":{},"timezone":"","title":"Geneva - Health","uid":"QTVw7iK7z","version":1}}' + Health","uid":"QTVw7iK7z","version":2}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Herr9s93tAPxiC4Ehz5k3w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AR0VHjS33U1JSuWDZAoM4A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:15 GMT + - Sun, 12 Mar 2023 00:19:39 GMT expires: - '-1' pragma: @@ -10407,7 +9751,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574416.109.440.140023|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580380.874.440.522194|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10439,13 +9783,13 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/icm-example response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"icm.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[{"description":"","label":"IcM + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"icm.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[{"description":"","label":"IcM via ADX","name":"DS_ICM_VIA ADX","pluginId":"grafana-azure-data-explorer-datasource","pluginName":"Azure Data Explorer Datasource","type":"datasource"}],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.1"},{"id":"grafana-azure-data-explorer-datasource","name":"Azure Data Explorer Datasource","type":"datasource","version":"3.6.1"},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":19,"iteration":1648251431667,"links":[],"liveNow":false,"panels":[{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":22,"panels":[],"title":"About + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":16,"iteration":1648251431667,"links":[],"liveNow":false,"panels":[{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":22,"panels":[],"title":"About this dashboard","type":"row"},{"gridPos":{"h":7,"w":5,"x":0,"y":1},"id":24,"options":{"content":"This dashboard is based on the [IcM canned dashboard](https://lens.msftcloudes.com/#/dashboard/V2%20Dashboard?_g=(ws:ws-icm-business-dashboard-workspace)).\n\nQuestions? Comments? Please reach out to [us](mailto://mitulkdirs@microsoft.com?subject=IcM%20Canned%20Dashboard%20Feedback).","mode":"markdown"},"pluginVersion":"8.4.1","title":"About @@ -10592,14 +9936,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OcSlyHEy4s8iPLp8br1wDw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EN4DoQNmQJmC4E0/RQYx5g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:15 GMT + - Sun, 12 Mar 2023 00:19:40 GMT expires: - '-1' pragma: @@ -10607,7 +9951,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574416.281.436.303403|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580381.056.435.941769|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10639,7 +9983,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/sVKyjvpnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"IncomingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":21,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"IncomingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":24,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"Rate\")\n\n| @@ -10699,14 +10043,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hsPgXM0pvxclllOXXLuEdw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SMS/9Hxl6zYO0Ag/OeQS1w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:15 GMT + - Sun, 12 Mar 2023 00:19:40 GMT expires: - '-1' pragma: @@ -10714,7 +10058,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574416.505.441.148762|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580381.329.440.760334|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10746,9 +10090,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/_sKhXTH7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"node-detail","url":"/d/_sKhXTH7z/node-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"NodeDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"node-detail","url":"/d/_sKhXTH7z/node-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"NodeDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":18,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":20,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster and an application, this widget shows it''s health timeline - time when the application sent Ok, Warning and Error as it''s health status","fieldConfig":{"defaults":{"color":{"mode":"continuous-RdYlGr"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":1,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]}]},"gridPos":{"h":13,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"dimension":"ClusterName, @@ -10784,14 +10128,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zWnMy9J13LekunGVl0UJeg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PW/kcnGEq3u3zhLIPomJ8g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:15 GMT + - Sun, 12 Mar 2023 00:19:40 GMT expires: - '-1' pragma: @@ -10799,7 +10143,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574416.726.440.635100|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580381.571.443.498225|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10831,7 +10175,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6naEwcp7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:26Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"OutgoingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":15,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"OutgoingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":25,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"RequestRate\")\n\n| @@ -10898,14 +10242,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hA1aPi1Kr1V0yOA9jYs14w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OK9m2+CwaYs79p0/qCglzw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:15 GMT + - Sun, 12 Mar 2023 00:19:40 GMT expires: - '-1' pragma: @@ -10913,7 +10257,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574416.903.435.887671|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580381.792.435.892898|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10945,9 +10289,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/GIgvhSV7z response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"service-fabric-application-overview\",\"url\":\"/d/GIgvhSV7z/service-fabric-application-overview\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-11T22:34:26Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":12,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"ServiceFabricApplicationOverview.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"service-fabric-application-overview\",\"url\":\"/d/GIgvhSV7z/service-fabric-application-overview\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:34Z\",\"updated\":\"2023-03-12T00:13:34Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"ServiceFabricApplicationOverview.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, - 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"target\":{\"limit\":100,\"matchAny\":false,\"tags\":[],\"type\":\"dashboard\"},\"type\":\"dashboard\"}]},\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":17,\"links\":[{\"asDropdown\":true,\"icon\":\"external + 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"target\":{\"limit\":100,\"matchAny\":false,\"tags\":[],\"type\":\"dashboard\"},\"type\":\"dashboard\"}]},\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":21,\"links\":[{\"asDropdown\":true,\"icon\":\"external link\",\"includeVars\":true,\"keepTime\":true,\"tags\":[],\"targetBlank\":true,\"title\":\"New link\",\"tooltip\":\"\",\"type\":\"dashboards\",\"url\":\"\"}],\"panels\":[{\"datasource\":\"Geneva Datasource\",\"description\":\"Total number of clusters reporting at least @@ -11015,21 +10359,21 @@ interactions: 10 unhealthy applications across all clusters\",\"tooltip\":{\"show\":true,\"showHistogram\":false},\"type\":\"heatmap\",\"xAxis\":{\"show\":true},\"xBucketNumber\":null,\"xBucketSize\":null,\"yAxis\":{\"decimals\":null,\"format\":\"short\",\"logBase\":1,\"max\":null,\"min\":null,\"show\":true,\"splitFactor\":null},\"yBucketBound\":\"auto\",\"yBucketNumber\":null,\"yBucketSize\":null}],\"refresh\":\"\",\"schemaVersion\":30,\"style\":\"dark\",\"tags\":[],\"templating\":{\"list\":[{\"allValue\":null,\"current\":{},\"datasource\":\"Geneva Datasource\",\"definition\":\"accounts()\",\"description\":\"The Geneva metrics account name\",\"error\":null,\"hide\":0,\"includeAll\":false,\"label\":\"Account\",\"multi\":false,\"name\":\"account\",\"options\":[],\"query\":\"accounts()\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":1,\"type\":\"query\"}]},\"time\":{\"from\":\"now-6h\",\"to\":\"now\"},\"timepicker\":{},\"timezone\":\"\",\"title\":\"Service - Fabric Application Overview\",\"uid\":\"GIgvhSV7z\",\"version\":2}}" + Fabric Application Overview\",\"uid\":\"GIgvhSV7z\",\"version\":1}}" headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5CBSW85dWubRwtY4Bew3Mg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ENkEssZXKrOwrut1SOgmLw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:16 GMT + - Sun, 12 Mar 2023 00:19:41 GMT expires: - '-1' pragma: @@ -11037,8 +10381,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574417.142.440.78504|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580382.009.442.477353|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -11066,12 +10410,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:06Z","updated":"2023-03-11T22:40:06Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"TOB175-Vz","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/TOB175-Vz/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test - Dashboard","uid":"IZE175-4k","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:30Z","updated":"2023-03-12T00:19:30Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":28,"folderUid":"0XPIK5-4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":29,"title":"Test + Dashboard","uid":"adUIF5aVz","version":1}}' headers: cache-control: - no-cache @@ -11080,14 +10424,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yC6mIP2wvoLRQC4WY3F9wQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XuVdcvBnvDT5kl0svhIt+A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:16 GMT + - Sun, 12 Mar 2023 00:19:41 GMT expires: - '-1' pragma: @@ -11095,7 +10439,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574417.416.440.228026|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580382.228.443.141128|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -11124,10 +10468,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz response: body: - string: '{"message":"Dashboard not found","traceID":"ef7bb0a0425804d6e28483285f4352cd"}' + string: '{"message":"Dashboard not found","traceID":"537130b59b46c15ca6da9dce91c9039a"}' headers: cache-control: - no-cache @@ -11136,14 +10480,14 @@ interactions: content-length: - '78' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8aLscIKQ2/N5nI0nKDA0MQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ym7cL/DYuyJBqjHsQQjzpQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:16 GMT + - Sun, 12 Mar 2023 00:19:41 GMT expires: - '-1' pragma: @@ -11151,7 +10495,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574417.601.435.600236|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580382.432.435.487927|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -11183,7 +10527,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":31,"uid":"Yn4b7c-4z","title":"Test Folder","url":"/dashboards/f/Yn4b7c-4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-11T22:40:17.079923522Z","updatedBy":"example@example.com","updated":"2023-03-11T22:40:17.079923622Z","version":1,"parentUid":""}' + string: '{"id":27,"uid":"G3VNKc-4k","title":"Test Folder","url":"/dashboards/f/G3VNKc-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:41.637699283Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:41.637699383Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -11192,14 +10536,14 @@ interactions: content-length: - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aCPOJWtmLaVH2qZr50iAXw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9Fj9TG8MZ1gpLRS54CoUEg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:17 GMT + - Sun, 12 Mar 2023 00:19:41 GMT expires: - '-1' pragma: @@ -11207,8 +10551,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574418.045.442.55675|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678580382.617.441.416684|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -11222,17 +10566,17 @@ interactions: message: OK - request: body: '{"meta": {"type": "db", "canSave": true, "canEdit": true, "canAdmin": true, - "canStar": true, "canDelete": true, "slug": "test-dashboard", "url": "/d/IZE175-4k/test-dashboard", - "expires": "0001-01-01T00:00:00Z", "created": "2023-03-11T22:40:06Z", "updated": - "2023-03-11T22:40:06Z", "updatedBy": "example@example.com", "createdBy": "example@example.com", - "version": 1, "hasAcl": false, "isFolder": false, "folderId": 26, "folderUid": - "TOB175-Vz", "folderTitle": "Test Folder", "folderUrl": "/dashboards/f/TOB175-Vz/test-folder", + "canStar": true, "canDelete": true, "slug": "test-dashboard", "url": "/d/adUIF5aVz/test-dashboard", + "expires": "0001-01-01T00:00:00Z", "created": "2023-03-12T00:19:30Z", "updated": + "2023-03-12T00:19:30Z", "updatedBy": "example@example.com", "createdBy": "example@example.com", + "version": 1, "hasAcl": false, "isFolder": false, "folderId": 28, "folderUid": + "0XPIK5-4k", "folderTitle": "Test Folder", "folderUrl": "/dashboards/f/0XPIK5-4k/test-folder", "provisioned": false, "provisionedExternalId": "", "annotationsPermissions": {"dashboard": {"canAdd": false, "canEdit": false, "canDelete": false}, "organization": {"canAdd": false, "canEdit": false, "canDelete": false}}, "hasPublicDashboard": false, "publicDashboardAccessToken": "", "publicDashboardUid": "", "publicDashboardEnabled": - false}, "dashboard": {"title": "Test Dashboard", "uid": "IZE175-4k", "version": - 1}, "folderId": 31, "overwrite": true}' + false}, "dashboard": {"title": "Test Dashboard", "uid": "adUIF5aVz", "version": + 1}, "folderId": 27, "overwrite": true}' headers: Accept: - '*/*' @@ -11250,7 +10594,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":32,"slug":"test-dashboard","status":"success","uid":"IZE175-4k","url":"/d/IZE175-4k/test-dashboard","version":1}' + string: '{"id":28,"slug":"test-dashboard","status":"success","uid":"adUIF5aVz","url":"/d/adUIF5aVz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -11259,14 +10603,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5F/P170gDMB9sT2ECNqDUQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5DoFeOy/bdAvrQKgJZGitQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:17 GMT + - Sun, 12 Mar 2023 00:19:42 GMT expires: - '-1' pragma: @@ -11274,7 +10618,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574418.274.443.723177|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580382.821.443.498366|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -11304,9 +10648,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/duj3tR77k response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"warmpathqos","url":"/d/duj3tR77k/warmpathqos","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:34:27Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"WarmPathQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"warmpathqos","url":"/d/duj3tR77k/warmpathqos","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"WarmPathQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":22,"links":[],"panels":[{"datasource":null,"gridPos":{"h":3,"w":24,"x":0,"y":0},"id":2,"options":{"content":"To + \u0026 Alerts","type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":23,"links":[],"panels":[{"datasource":null,"gridPos":{"h":3,"w":24,"x":0,"y":0},"id":2,"options":{"content":"To know more check \u003cbr\u003e\n\u003ca href=\"https://eng.ms/docs/products/geneva/logs/howtoguides/qos/overview\"\u003eWarmPath QoS Metrics Overview\u003c/a\u003e","mode":"html"},"pluginVersion":"8.0.6","title":"Geneva WarmPath Quick Links","type":"text"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":5,"w":12,"x":0,"y":3},"id":4,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"8.0.6","targets":[{"account":"$account","backends":[],"customSeriesNaming":"Total/1000","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"LatencyMs\").preaggregate(\"Total\")\n| @@ -11359,14 +10703,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-M6tBA3iLJSvr5b5u+tB27w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Vugjy+bp7BlK8FQ2F2+DAw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:17 GMT + - Sun, 12 Mar 2023 00:19:42 GMT expires: - '-1' pragma: @@ -11374,7 +10718,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574418.488.435.250475|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580383.324.438.798205|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -11406,7 +10750,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"a1a71c6cc86c21f1820f9c23a58e3923"}' + string: '{"message":"id is invalid","traceID":"3d2390b2773c1a6abc04b7da70a297fc"}' headers: cache-control: - no-cache @@ -11415,14 +10759,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iUKvBg/NiaaRWXHx0duo9Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1BiJI+80d43MLvwX7JBohQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:17 GMT + - Sun, 12 Mar 2023 00:19:42 GMT expires: - '-1' pragma: @@ -11430,7 +10774,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574418.792.439.726189|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580383.658.441.659200|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -11469,14 +10813,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Z59RMqRXyj2GJIiaaI6aDg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rdj7v6vaR/ryTSY4io+0nQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:18 GMT + - Sun, 12 Mar 2023 00:19:43 GMT expires: - '-1' pragma: @@ -11484,8 +10828,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574419.013.440.158541|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678580384.096.442.85715|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -11514,7 +10858,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":18,"uid":"geneva","title":"Geneva"},{"id":31,"uid":"Yn4b7c-4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":27,"uid":"G3VNKc-4k","title":"Test Folder"}]' headers: cache-control: @@ -11524,14 +10868,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+vFjPJuxDUfDvtuewLXz4w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-22hndZy82T0LBuQ6mbzw6Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:18 GMT + - Sun, 12 Mar 2023 00:19:43 GMT expires: - '-1' pragma: @@ -11539,7 +10883,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574419.196.437.311682|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580384.294.442.711531|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -11566,12 +10910,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/IZE175-4k + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/IZE175-4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-11T22:40:17Z","updated":"2023-03-11T22:40:17Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":31,"folderUid":"Yn4b7c-4z","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/Yn4b7c-4z/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":32,"title":"Test - Dashboard","uid":"IZE175-4k","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:42Z","updated":"2023-03-12T00:19:42Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":27,"folderUid":"G3VNKc-4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/G3VNKc-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":28,"title":"Test + Dashboard","uid":"adUIF5aVz","version":1}}' headers: cache-control: - no-cache @@ -11580,14 +10924,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1Va7aV7cLYPlWYsbcQE5kQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CEnvnA7yrULQWQt2rwu7IA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sat, 11 Mar 2023 22:40:18 GMT + - Sun, 12 Mar 2023 00:19:43 GMT expires: - '-1' pragma: @@ -11595,7 +10939,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678574419.492.441.893576|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678580384.594.443.905512|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml index 738a3d4f8d9..c18ce52bb37 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml @@ -23,30 +23,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:49:46.2350212Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1106' + - '1157' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:49:47 GMT + - Sun, 12 Mar 2023 01:04:59 GMT etag: - - '"0000ce26-0000-0600-0000-63cda16b0000"' + - '"d8002617-0000-0600-0000-640d253a0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -74,10 +74,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:50:17 GMT + - Sun, 12 Mar 2023 01:04:59 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -120,10 +120,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:50:47 GMT + - Sun, 12 Mar 2023 01:05:28 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -166,10 +166,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:51:17 GMT + - Sun, 12 Mar 2023 01:05:59 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -212,10 +212,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:51:48 GMT + - Sun, 12 Mar 2023 01:06:28 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -258,10 +258,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:52:17 GMT + - Sun, 12 Mar 2023 01:06:58 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -304,10 +304,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:52:47 GMT + - Sun, 12 Mar 2023 01:07:28 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -350,10 +350,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:53:17 GMT + - Sun, 12 Mar 2023 01:07:59 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -396,10 +396,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-01-22T20:49:47.4328457Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' headers: cache-control: - no-cache @@ -408,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:53:48 GMT + - Sun, 12 Mar 2023 01:08:29 GMT etag: - - '"42001696-0000-0600-0000-63cda16b0000"' + - '"5f002c5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -442,10 +442,102 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"4290b015-553c-4d20-86d8-ef9811c8ac2f*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-01-22T20:49:47.4328457Z","endTime":"2023-01-22T20:54:01.0556271Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 01:08:58 GMT + etag: + - '"5f002c5d-0000-0600-0000-640d253a0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags --skip-role-assignments + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 01:09:29 GMT + etag: + - '"5f002c5d-0000-0600-0000-640d253a0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags --skip-role-assignments + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-12T01:04:58.3062808Z","endTime":"2023-03-12T01:09:51.8151573Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -454,9 +546,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:18 GMT + - Sun, 12 Mar 2023 01:09:59 GMT etag: - - '"4200efa1-0000-0600-0000-63cda2690000"' + - '"5f003b5d-0000-0600-0000-640d265f0000"' expires: - '-1' pragma: @@ -491,18 +583,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:49:46.2350212Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1027' + - '1076' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:18 GMT + - Sun, 12 Mar 2023 01:09:59 GMT etag: - - '"0000d126-0000-0600-0000-63cda2690000"' + - '"d800dc18-0000-0600-0000-640d265f0000"' expires: - '-1' pragma: @@ -539,16 +631,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:49:46.2350212Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '1039' + - '1088' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:20 GMT + - Sun, 12 Mar 2023 01:10:01 GMT expires: - '-1' pragma: @@ -560,19 +652,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - bbf07ae7-4ff5-416b-8c06-6e9208a1a04a - - af3040dd-320f-4fb4-a24f-8d1cafc77969 - - 53f30ec2-b206-4b3f-8bd6-6f812290929d - - a53387e6-9af5-409b-b9be-92b006cf9724 - - 0a616298-4adb-4d4a-8022-70cfd5847125 - - b2cfdf50-973f-48a8-8e31-1bd68055e82d - - 89ac540c-dca7-4dcf-8051-0c51e1d7c1a7 - - 8bafffe2-e244-4438-9ac9-ab3cd749d168 - - 08f3b0a6-ec92-4816-bba5-a058a377ef8c - - 4dc46410-7818-457b-9d9a-766d7e7ed82f - - 0ae70a74-674b-49d6-805b-d78bcf554928 - - bb6139b9-eb0e-48fa-8fc3-b09265644223 - - dd9fbb2b-c8b9-478d-8968-03a079becd1d + - b321b642-b8d7-4ee1-8d86-5d1b758c2e3c + - 6e52763a-472b-4b17-9e51-0ba7df09b414 + - 9d3be792-1383-4268-8f9d-e09be03a8828 + - 4e307842-b292-4976-8054-af777b6520ea + - c7682f86-3a6b-4da0-a9c0-2e1a6345b3cc + - 8424bcb2-581b-49df-ad73-8f03a2125d96 + - 9380fabc-adce-48d4-8167-dc0f40652d15 + - 1beabf8e-05dd-4590-b78a-5fa374b4407d + - fe8f1906-e1e3-46f2-883a-155b238b7612 + - 735a3d0d-081e-43bc-aa61-e9fe5229031d + - 6a61b42d-69cb-42b0-96ad-522d040cb098 + - 92d81649-f14f-4919-9d4c-080f766c588a + - cac3e635-e95f-4a97-956e-a188466a1aaf status: code: 200 message: OK @@ -593,16 +685,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwscus","name":"yugangwscus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T00:36:56.3893044Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T04:46:34.5139318Z"},"identity":{"principalId":"011ffbe2-ab76-4572-8221-9f97719b08b2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.3.2.2","endpoint":"https://yugangwscus-areycch9c2a9hba9.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-20T00:53:01.4642177Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:49:46.2350212Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgtfqmtrqub2wqh7r5xfgwqaz6qbjesps6vsqpfrmwzbqdmvbxb45gecyyoyixzhj/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:09:07.7330226Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '3352' + - '4678' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:22 GMT + - Sun, 12 Mar 2023 01:10:03 GMT expires: - '-1' pragma: @@ -614,19 +706,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 09896aa9-f089-430f-8520-ba995148b821 - - bed2caca-9c7c-4d5e-aa1f-e8a3b8e702af - - ee967082-a1d3-46bf-87c3-ac1373cb2f4a - - 1af0c126-c291-4b74-9712-3bd5ad9135a8 - - 9f926b9e-d6f1-4165-b1ab-87925ea8029c - - c7941a99-fe98-4a94-adff-f17447c49d8a - - 10efd8bc-05be-4c6e-a764-42b7556a765c - - 6e96f56a-0ed0-488c-bb38-9e9946143e37 - - ddbb9965-1fd7-4075-9da7-3701a5c62e88 - - d03ef0a0-88c1-47de-822e-4c8fb9c41b3e - - 1635665a-63e2-45a0-8958-a8be63a5ab63 - - bbf2284e-27c4-4916-959f-bc43dde1fb78 - - d72e8c61-ceef-41c4-8506-b613ef011be0 + - fbc1d42d-94ff-4a02-9d0d-dfe476267bc6 + - e57def47-daea-455e-bb1b-51a55bf28eaa + - 83053c4f-ebc9-4458-b7c7-540db216b31d + - 1b311ba4-9b38-45ee-bc5b-2d9586a29aa4 + - 82b5e68b-fe51-43c1-8f79-b9271c984114 + - cf1f1712-1595-40de-9a3e-82eaed75d90a + - 57a0a991-9230-453e-a774-bbdbcfeefc4f + - 57ada1bb-8f2e-422b-b6f6-762378823711 + - d863b845-2603-4638-bf41-670fe3fb9cf6 + - c947b018-a06c-4037-be9b-1737fae50b6d + - aebdb008-63d1-43ad-8e24-d334c5da8461 + - b99cd72c-f361-4fb9-b82f-b3284119be47 + - 05ab589b-e031-4911-a91c-a8bd6d150945 status: code: 200 message: OK @@ -649,18 +741,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:49:46.2350212Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1027' + - '1076' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:23 GMT + - Sun, 12 Mar 2023 01:10:03 GMT etag: - - '"0000d126-0000-0600-0000-63cda2690000"' + - '"d800dc18-0000-0600-0000-640d265f0000"' expires: - '-1' pragma: @@ -697,18 +789,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:49:46.2350212Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1027' + - '1076' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:23 GMT + - Sun, 12 Mar 2023 01:10:04 GMT etag: - - '"0000d126-0000-0600-0000-63cda2690000"' + - '"d800dc18-0000-0600-0000-640d265f0000"' expires: - '-1' pragma: @@ -730,8 +822,9 @@ interactions: body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Enabled", "zoneRedundancy": "Disabled", "apiKey": "Enabled", "deterministicOutboundIP": "Enabled", "autoGeneratedDomainNameLabelScope": "TenantReuse", "grafanaIntegrations": - {"azureMonitorWorkspaceIntegrations": []}}, "identity": {"type": "SystemAssigned"}, - "tags": {"foo": "doo"}, "location": "westcentralus"}' + {"azureMonitorWorkspaceIntegrations": []}, "grafanaConfigurations": {"smtp": + {"enabled": false}}}, "identity": {"type": "SystemAssigned"}, "tags": {"foo": + "doo"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -742,7 +835,7 @@ interactions: Connection: - keep-alive Content-Length: - - '379' + - '434' Content-Type: - application/json ParameterSetName: @@ -753,26 +846,26 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:54:25.0552299Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.69.18.75","20.69.17.180"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:05.3524109Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["4.255.138.230","20.69.46.50"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1136' + - '1186' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:25 GMT + - Sun, 12 Mar 2023 01:10:05 GMT etag: - - '"0000d726-0000-0600-0000-63cda2810000"' + - '"d800a119-0000-0600-0000-640d266d0000"' expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -807,18 +900,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:54:25.0552299Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.69.18.75","20.69.17.180"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:05.3524109Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["4.255.138.230","20.69.46.50"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1136' + - '1186' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:26 GMT + - Sun, 12 Mar 2023 01:10:06 GMT etag: - - '"0000d726-0000-0600-0000-63cda2810000"' + - '"d800a119-0000-0600-0000-640d266d0000"' expires: - '-1' pragma: @@ -855,18 +948,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:54:25.0552299Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.69.18.75","20.69.17.180"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:05.3524109Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["4.255.138.230","20.69.46.50"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1136' + - '1186' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:26 GMT + - Sun, 12 Mar 2023 01:10:07 GMT etag: - - '"0000d726-0000-0600-0000-63cda2810000"' + - '"d800a119-0000-0600-0000-640d266d0000"' expires: - '-1' pragma: @@ -888,8 +981,9 @@ interactions: body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Disabled", "zoneRedundancy": "Disabled", "apiKey": "Disabled", "deterministicOutboundIP": "Disabled", "autoGeneratedDomainNameLabelScope": "TenantReuse", "grafanaIntegrations": - {"azureMonitorWorkspaceIntegrations": []}}, "identity": {"type": "SystemAssigned"}, - "tags": {"foo": "doo"}, "location": "westcentralus"}' + {"azureMonitorWorkspaceIntegrations": []}, "grafanaConfigurations": {"smtp": + {"enabled": false}}}, "identity": {"type": "SystemAssigned"}, "tags": {"foo": + "doo"}, "location": "westcentralus"}' headers: Accept: - application/json @@ -900,7 +994,7 @@ interactions: Connection: - keep-alive Content-Length: - - '382' + - '437' Content-Type: - application/json ParameterSetName: @@ -911,26 +1005,26 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:54:27.4509802Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:07.9479959Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1113' + - '1162' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:27 GMT + - Sun, 12 Mar 2023 01:10:08 GMT etag: - - '"0000d926-0000-0600-0000-63cda2830000"' + - '"d800c419-0000-0600-0000-640d26700000"' expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -965,18 +1059,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:54:27.4509802Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:07.9479959Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1113' + - '1162' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:28 GMT + - Sun, 12 Mar 2023 01:10:09 GMT etag: - - '"0000d926-0000-0600-0000-63cda2830000"' + - '"d800c419-0000-0600-0000-640d26700000"' expires: - '-1' pragma: @@ -1013,18 +1107,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T20:49:46.2350212Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T20:54:27.4509802Z"},"identity":{"principalId":"cd5dc10f-f269-409d-b991-d4f1a22f2d36","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:07.9479959Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1113' + - '1162' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:29 GMT + - Sun, 12 Mar 2023 01:10:09 GMT etag: - - '"0000d926-0000-0600-0000-63cda2830000"' + - '"d800c419-0000-0600-0000-640d26700000"' expires: - '-1' pragma: @@ -1065,8 +1159,10 @@ interactions: body: string: 'null' headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -1074,15 +1170,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:54:30 GMT + - Sun, 12 Mar 2023 01:10:10 GMT etag: - - '"0000da26-0000-0600-0000-63cda2860000"' + - '"d800e119-0000-0600-0000-640d26720000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview pragma: - no-cache + request-context: + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1110,10 +1208,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z"}' headers: cache-control: - no-cache @@ -1122,9 +1220,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:55:00 GMT + - Sun, 12 Mar 2023 01:10:10 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00415d-0000-0600-0000-640d26720000"' expires: - '-1' pragma: @@ -1152,21 +1250,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:55:29 GMT + - Sun, 12 Mar 2023 01:10:39 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1194,21 +1292,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:56:00 GMT + - Sun, 12 Mar 2023 01:11:10 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1236,21 +1334,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:56:30 GMT + - Sun, 12 Mar 2023 01:11:40 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1278,21 +1376,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:56:59 GMT + - Sun, 12 Mar 2023 01:12:10 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1320,21 +1418,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:57:29 GMT + - Sun, 12 Mar 2023 01:12:41 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1362,21 +1460,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:58:00 GMT + - Sun, 12 Mar 2023 01:13:12 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1404,21 +1502,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:58:30 GMT + - Sun, 12 Mar 2023 01:13:41 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1446,21 +1544,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:59:00 GMT + - Sun, 12 Mar 2023 01:14:11 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1488,21 +1586,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 20:59:30 GMT + - Sun, 12 Mar 2023 01:14:42 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1530,21 +1628,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:00:00 GMT + - Sun, 12 Mar 2023 01:15:11 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1572,21 +1670,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:00:30 GMT + - Sun, 12 Mar 2023 01:15:42 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1614,21 +1712,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:01:00 GMT + - Sun, 12 Mar 2023 01:16:12 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1656,21 +1754,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:01:31 GMT + - Sun, 12 Mar 2023 01:16:41 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1698,21 +1796,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:02:01 GMT + - Sun, 12 Mar 2023 01:17:12 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1740,21 +1838,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-01-22T20:54:29.9530808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' headers: cache-control: - no-cache content-length: - - '508' + - '519' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:02:31 GMT + - Sun, 12 Mar 2023 01:17:42 GMT etag: - - '"4200dba3-0000-0600-0000-63cda2850000"' + - '"5f00425d-0000-0600-0000-640d267a0000"' expires: - '-1' pragma: @@ -1782,21 +1880,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","name":"6e84c4f7-3325-49db-9bfd-fcf864e18459*75A650BEB05C88497BBA8CE1306068BC1486CB3112A5549C25672A95DE49E406","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-01-22T20:54:29.9530808Z","properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-12T01:10:10.2511643Z","endTime":"2023-03-12T01:17:51.0524157Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '527' + - '579' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:03:00 GMT + - Sun, 12 Mar 2023 01:18:12 GMT etag: - - '"02005104-0000-4d00-0000-63cda4710000"' + - '"5f00685d-0000-0600-0000-640d283f0000"' expires: - '-1' pragma: @@ -1831,7 +1929,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27cd5dc10f-f269-409d-b991-d4f1a22f2d36%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27f015d16d-805d-43bd-9b6e-4400996d4ff5%27&api-version=2020-04-01-preview response: body: string: '{"value":[]}' @@ -1843,7 +1941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:03:01 GMT + - Sun, 12 Mar 2023 01:18:13 GMT expires: - '-1' pragma: @@ -1878,16 +1976,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwscus","name":"yugangwscus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-01-22T00:36:56.3893044Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T04:46:34.5139318Z"},"identity":{"principalId":"011ffbe2-ab76-4572-8221-9f97719b08b2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.3.2.2","endpoint":"https://yugangwscus-areycch9c2a9hba9.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-20T00:53:01.4642177Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '2324' + - '2381' content-type: - application/json; charset=utf-8 date: - - Sun, 22 Jan 2023 21:03:03 GMT + - Sun, 12 Mar 2023 01:18:15 GMT expires: - '-1' pragma: @@ -1899,19 +1997,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 3152ee07-0793-47b4-969a-a743a8aecc42 - - 3de01911-cf58-4a79-a120-7efc94183473 - - 94f4d34c-bd54-4a4e-b08c-68f1d9a4f8aa - - ae2c478a-3524-4b75-bba1-1fab294bf427 - - 462df9d5-9e70-4f35-990b-2cc0e245bcb9 - - f3f761d8-852d-4c4c-8e31-802b9b9a9ac8 - - 3f3e2bdc-d01e-40ca-bad0-2fe15c24e75a - - 2799d0ed-f5fe-4d58-bf58-2c1572111c9c - - a787dff1-2004-4d8e-b227-35f68a9948a4 - - 22665726-ff5e-4439-ac4e-111814f05076 - - b960c7d6-6927-4728-9e61-04e4bf84eccd - - 6d52bdd3-e803-4fe8-9b44-2d960fde9c39 - - 4dc09562-abe2-499e-a8ce-58f478c18e54 + - 91e8a309-df88-4124-a4c2-e6d6d38fa712 + - 6e8eba04-03ad-422d-9341-2e3b347ff859 + - 2fd7ccfa-d32d-48be-9633-80abbfe16d24 + - f194df2e-27a4-4def-a4e7-c8019cf022d8 + - b9ec1149-0579-4db9-9c42-b359aaae889c + - 48856512-974a-461f-ad2b-18b55d1cd3bb + - 2439897f-e2db-46d5-8ece-80a65dee486c + - bbd58522-a32a-40a7-b6e5-c4460e1d4479 + - b5c9c63d-81cf-4212-a313-ec4c32b5ad89 + - 4536cdbe-17d7-43d2-9a36-2b9a2ffac6ea + - 4cc296f4-a900-488b-b039-58201d03e0b0 + - 7d8a36eb-0e4a-4e69-914f-1bbabf1efde3 + - 77e13d0e-c963-477b-a83a-eab5c722a3a3 status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml index f51d933354a..64b30433443 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml @@ -23,30 +23,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:52.1471466Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:52.1471466Z"},"identity":{"principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1095' + - '1146' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:08:55 GMT + - Sun, 12 Mar 2023 00:30:29 GMT etag: - - '"01007aaf-0000-0d00-0000-63cdd0160000"' + - '"5a00c8ac-0000-0d00-0000-640d1d240000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -74,10 +74,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:09:25 GMT + - Sun, 12 Mar 2023 00:30:30 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -120,10 +120,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:09:55 GMT + - Sun, 12 Mar 2023 00:30:59 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -166,10 +166,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:10:26 GMT + - Sun, 12 Mar 2023 00:31:30 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -212,10 +212,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:10:56 GMT + - Sun, 12 Mar 2023 00:32:00 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -258,10 +258,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:11:26 GMT + - Sun, 12 Mar 2023 00:32:30 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -304,10 +304,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:11:56 GMT + - Sun, 12 Mar 2023 00:33:00 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -350,10 +350,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:12:26 GMT + - Sun, 12 Mar 2023 00:33:30 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -396,10 +396,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-01-23T00:08:53.9908121Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' headers: cache-control: - no-cache @@ -408,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:12:57 GMT + - Sun, 12 Mar 2023 00:34:01 GMT etag: - - '"1c007941-0000-0d00-0000-63cdd0150000"' + - '"3d00cd40-0000-0d00-0000-640d1d230000"' expires: - '-1' pragma: @@ -442,10 +442,148 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"be64971d-a6f7-4dda-aefa-9485375ba8ac*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-01-23T00:08:53.9908121Z","endTime":"2023-01-23T00:13:14.7347089Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:34:31 GMT + etag: + - '"3d00cd40-0000-0d00-0000-640d1d230000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:35:01 GMT + etag: + - '"3d00cd40-0000-0d00-0000-640d1d230000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:35:31 GMT + etag: + - '"3d00cd40-0000-0d00-0000-640d1d230000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-12T00:30:27.8680298Z","endTime":"2023-03-12T00:35:49.8063305Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -454,9 +592,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:28 GMT + - Sun, 12 Mar 2023 00:36:02 GMT etag: - - '"1c007e44-0000-0d00-0000-63cdd11a0000"' + - '"3d00ab45-0000-0d00-0000-640d1e650000"' expires: - '-1' pragma: @@ -491,18 +629,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:52.1471466Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:52.1471466Z"},"identity":{"principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.2.7.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1016' + - '1065' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:28 GMT + - Sun, 12 Mar 2023 00:36:02 GMT etag: - - '"0100e7af-0000-0d00-0000-63cdd11a0000"' + - '"5a0005b5-0000-0d00-0000-640d1e650000"' expires: - '-1' pragma: @@ -538,9 +676,9 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a82fbf69-b4d7-49f4-83a6-915b2cf354f4","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"LearningAppServiceInTeams","servicePlanId":"b76fb638-6ba6-402a-b9f9-83d28acb3d86"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2023-02-11T23:04:06Z","capabilityStatus":"Deleted","service":"YammerEnterprise","servicePlanId":"a82fbf69-b4d7-49f4-83a6-915b2cf354f4"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"c244cc9e-622f-4576-92ea-82e233e44e36"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL - SWE MANAGER","lastDirSyncTime":"2023-01-20T00:31:36Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + SWE MANAGER","lastDirSyncTime":"2023-03-06T18:01:28Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First @@ -554,8 +692,8 @@ interactions: Wang (Volt)","X500:/O=Microsoft/OU=APPS-WGA/cn=Recipients/cn=yugangw","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang5ec8094e-2aed-488b-a327-9baed3c38367","SMTP:example@example.com","smtp:a-ywang2@microsoft.com","smtp:yugangw@msg.microsoft.com","x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang (Volt)","smtp:YUGANGW@service.microsoft.com"],"refreshTokensValidFromDateTime":"2019-08-29T00:11:39Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"example@example.com","state":null,"streetAddress":null,"surname":"Wang","telephoneNumber":"+1 - (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Qing - Ye","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"128505","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"QINGYE","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"144840","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Brahmnes + Fung","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"BFUNG","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"138058"}' headers: access-control-allow-origin: @@ -563,25 +701,25 @@ interactions: cache-control: - no-cache content-length: - - '25292' + - '25938' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Mon, 23 Jan 2023 00:13:29 GMT + - Sun, 12 Mar 2023 00:36:03 GMT duration: - - '1614475' + - '1117961' expires: - '-1' ocp-aad-diagnostics-server-name: - - 903w76f6J66w6J4DkF51MTjj/hIflp2ZcjrYTlSqFpo= + - S4Qdzfh6wGIK1FXXBhSnMMCdVuqd5/mRQmyoRtmydCY= ocp-aad-session-key: - - 7rtFiDUI7x3TS9QM35ER0r-p900cZ9WO3giiJFavH-lEIF-_mU2l8M1vzBThYQgLu51S7jm8HD4WC4cf-kCDrrjuYNmE3jKkXpd_kVq82WOG4JcE2uDBdk6SKFUNlOHc.v0QWIS-rL-ItNHNbg1ytV1vPUJ8YXIPDKl-FExa_z9Y + - RwnhcfdwftFA_20BzLHYQnuOpxio1aKR6FPVDDR15xdNgMGhMGDMPApT6Ow42-K8tKY4nqXw7iyL6eiCQFoaXJ8piHJXc_-IjCo_tMMqNb2usLHafb4pRltPiVMEZTVG.nEJpmWQK5BSeG-HFIW6ogO_nEQSPKAGjetyljO5pnOw pragma: - no-cache request-id: - - c0145500-b527-4d9b-b8b2-09ff1375fe29 + - ac064c02-bf5c-4dc2-bdc4-9a0dc3a8402b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -627,7 +765,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:29 GMT + - Sun, 12 Mar 2023 00:36:03 GMT expires: - '-1' pragma: @@ -672,7 +810,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:31.2501678Z","updatedOn":"2023-01-23T00:13:31.6407232Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:04.7884008Z","updatedOn":"2023-03-12T00:36:05.2016332Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -681,7 +819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:34 GMT + - Sun, 12 Mar 2023 00:36:06 GMT expires: - '-1' pragma: @@ -729,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:35 GMT + - Sun, 12 Mar 2023 00:36:06 GMT expires: - '-1' pragma: @@ -749,7 +887,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "d115507b-f8a5-4761-9b87-89ce735c09df"}}' + "principalId": "90b7eca7-08e2-400f-96ea-1b46695de291"}}' headers: Accept: - application/json @@ -774,7 +912,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:35.9463873Z","updatedOn":"2023-01-23T00:13:36.3370140Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:07.7200675Z","updatedOn":"2023-03-12T00:36:08.1460031Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -783,7 +921,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:37 GMT + - Sun, 12 Mar 2023 00:36:10 GMT expires: - '-1' pragma: @@ -818,16 +956,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:52.1471466Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:52.1471466Z"},"identity":{"principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.2.7.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '1028' + - '1077' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:39 GMT + - Sun, 12 Mar 2023 00:36:11 GMT expires: - '-1' pragma: @@ -839,19 +977,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 4af599ec-9b4c-4fc3-92f5-bb71a556d65c - - e649ab80-5625-4799-b33a-b05030310a08 - - 6514bf38-df3f-43bb-aef0-e685013a3c89 - - 8432696e-bff2-488c-8bef-c83d87672b54 - - bad92448-4b36-46a6-91ec-48131182f2bb - - 83e40923-e422-4032-a7ae-2f33a5e4063e - - 3a883fb6-2f41-4b9b-9cbc-9ed7173399ca - - a637d2c2-22d8-45d3-a6ac-fa7c66d0f813 - - 82aa13ee-f46f-464f-b32b-161019813d1b - - b67f7189-ec60-477e-9554-7bf195b0dac1 - - 90565ca2-3bd0-437c-8185-87eb6ad0a1f4 - - b4471ff0-4826-4386-b730-209d78b3d25f - - 1f217321-f1cf-4498-a9ca-1413e63fa31a + - e0b7e8bd-d8ce-4a54-abe7-e103ae65c9a2 + - 071987b9-01a5-4525-b1b8-5dc7177a79d6 + - ff63eadc-9017-4b8f-877c-f93a78e818cc + - e6685325-1302-49f3-98c6-f5a8e72d7318 + - 656ffb3c-287f-4575-af97-3ba227251315 + - cadc282b-14b3-40b4-a6e8-6f147f142664 + - 75a11ee4-42f3-4950-8c70-7519844212e3 + - 1af97359-552b-4c35-a09c-acc0bb3833eb + - 50c56684-6ff9-4587-bfd9-c00ecf434cc5 + - a014e1ff-fd0e-46dc-8e5a-95e2f94948dd + - ddabed12-9949-4d06-ac70-cc74bc2867cd + - 8ba5bd77-adf9-4bc5-a83d-c10983ceb3af + - a907bb77-6dac-4ef3-add7-977466f4a9a7 status: code: 200 message: OK @@ -872,16 +1010,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwscus","name":"yugangwscus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-22T00:36:56.3893044Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T04:46:34.5139318Z"},"identity":{"principalId":"011ffbe2-ab76-4572-8221-9f97719b08b2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.3.2.2","endpoint":"https://yugangwscus-areycch9c2a9hba9.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-20T00:53:01.4642177Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgev4rcxnbpkmlxgqecf64pakgos3gyke2s5mxyljkpfpota5ztlkfs4hqpjroo7u/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.7155255Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.7155255Z"},"identity":{"principalId":"2218eee3-434e-43c1-a202-10bd63d99133","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgqmcjims7ivcqz3t2wxfyxob3teglnrroi7spretfss6nijlffkihn5q75n3occk/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.65194Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.65194Z"},"identity":{"principalId":"aafb2e5f-7616-4149-b6c4-e6559889206b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:52.1471466Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:52.1471466Z"},"identity":{"principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.2.7.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgdzzbgt34ji7nufr6dtq5eo6ry67hnkx5brtwshnsj7eioqbi7z2volqk72kip7o/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '5514' + - '4676' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:41 GMT + - Sun, 12 Mar 2023 00:36:13 GMT expires: - '-1' pragma: @@ -893,19 +1031,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - c85258e3-1cad-45af-8016-9d5e818d5d8b - - 3887cd0d-8d95-4645-9bf7-d84959acf38f - - 58cb7558-50dd-4b57-902d-b9fbe7d7272f - - 6ee846dc-3481-4d1e-b1b1-fbeaca48b6eb - - f467cba0-2603-4875-bd8a-3f3938b89534 - - 73fde02c-6e85-4024-8ae2-ad40f2fffd73 - - c0e4ba4a-4183-4d2d-9671-47b3fb53b099 - - 225d2d69-927a-4361-8ed4-d91b4154c444 - - 113cda00-f4bb-48f1-a590-d2a8a2bf916c - - b825e91f-30c4-469c-b30c-fc96ba39e07e - - d0bec3fc-bdfb-4fe7-b472-ce437c0597be - - 92229365-f710-4e7a-a4d5-67198f88573e - - 2fcd32a7-8441-4473-b38d-8baff63ea0af + - 4df64bd2-7feb-4d9c-8c24-7d69de9e961c + - db39eef0-8125-4c33-9eba-62a19038c264 + - 1af13221-99b4-4f52-a977-4ecdedd17c7e + - 01359dbd-c2ec-417c-8780-8b06f30f9c3c + - d1372163-ebfc-497e-99b2-aaa64f9c5beb + - 09411e20-7d3a-43de-8394-9b01a1155f3b + - 79e81bdd-d650-43a3-a743-a9c55d436c7f + - 53d3364e-356c-4c6c-8c4b-45671ede2765 + - e5ff4cbb-cedd-406f-b337-3c3174cf773e + - af4c316b-fa0e-4ae5-9016-4cf20dc96979 + - 1680d0e4-493c-4c8c-b9a7-f649828ad7af + - 64f937f8-0191-470f-bed6-7243a2f4cfb6 + - ec034b88-7099-4573-b5d6-1a09fed3aacd status: code: 200 message: OK @@ -928,18 +1066,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:52.1471466Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:52.1471466Z"},"identity":{"principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.2.7.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1016' + - '1065' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:42 GMT + - Sun, 12 Mar 2023 00:36:14 GMT etag: - - '"0100e7af-0000-0d00-0000-63cdd11a0000"' + - '"5a0005b5-0000-0d00-0000-640d1e650000"' expires: - '-1' pragma: @@ -976,18 +1114,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:52.1471466Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:52.1471466Z"},"identity":{"principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.2.7.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1016' + - '1065' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:44 GMT + - Sun, 12 Mar 2023 00:36:16 GMT etag: - - '"0100e7af-0000-0d00-0000-63cdd11a0000"' + - '"5a0005b5-0000-0d00-0000-640d1e650000"' expires: - '-1' pragma: @@ -1022,7 +1160,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/org/users response: body: - string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-01-23T00:13:47Z","lastSeenAtAge":"\u003c + string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-03-12T00:36:18Z","lastSeenAtAge":"\u003c 1 minute","isDisabled":false}]' headers: cache-control: @@ -1032,26 +1170,29 @@ interactions: content-length: - '272' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sIGbpVhgkzqGsWV5T4mrgQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:47 GMT + - Sun, 12 Mar 2023 00:36:18 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432826.917.309.983588|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581378.379.30.990918|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1075,7 +1216,7 @@ interactions: response: body: string: '{"id":2,"email":"example@example.com","name":"example@example.com","login":"example@example.com","theme":"","orgId":1,"isGrafanaAdmin":false,"isDisabled":false,"isExternal":true,"authLabels":["Auth - Proxy"],"updatedAt":"2023-01-23T00:13:47Z","createdAt":"2023-01-23T00:13:47Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' + Proxy"],"updatedAt":"2023-03-12T00:36:17Z","createdAt":"2023-03-12T00:36:17Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' headers: cache-control: - no-cache @@ -1084,26 +1225,29 @@ interactions: content-length: - '331' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dUhrG5822j7PNXuTLBFaew';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:48 GMT + - Sun, 12 Mar 2023 00:36:19 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432828.788.308.704654|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581379.656.27.419880|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1128,35 +1272,38 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '{"id":48,"uid":"uDq_s0T4z","title":"Test Folder","url":"/dashboards/f/uDq_s0T4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-01-23T00:13:48Z","updatedBy":"example@example.com","updated":"2023-01-23T00:13:48Z","version":1}' + string: '{"id":25,"uid":"AbL455-4k","title":"Test Folder","url":"/dashboards/f/AbL455-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:36:19.665587061Z","updatedBy":"example@example.com","updated":"2023-03-12T00:36:19.665587061Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '317' + - '352' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MnlLKjixTLXGBPBbE3poXQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:48 GMT + - Sun, 12 Mar 2023 00:36:19 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432829.697.308.197599|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581380.647.27.262694|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1179,7 +1326,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"dca4eee5113f9848962bec8c37286d27"}' + string: '{"message":"id is invalid","traceID":"7f3b53648580e3f7c8624383a076dd0f"}' headers: cache-control: - no-cache @@ -1187,25 +1334,30 @@ interactions: - keep-alive content-length: - '72' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iIHi++ugDkAqpnvEXT5P2Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:49 GMT + - Sun, 12 Mar 2023 00:36:20 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432830.42.316.561742|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581381.312.30.895710|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1236,25 +1388,30 @@ interactions: - keep-alive content-length: - '51' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+3xnzF9BLkGSQfv46dve2A';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:50 GMT + - Sun, 12 Mar 2023 00:36:20 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432831.307.66173|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581381.857.27.939472|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1277,8 +1434,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":24,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":48,"uid":"uDq_s0T4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"AbL455-4k","title":"Test Folder"}]' headers: cache-control: @@ -1286,28 +1442,31 @@ interactions: connection: - keep-alive content-length: - - '216' + - '141' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hcvjLbgxuGV2pMXvVjKqCQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:50 GMT + - Sun, 12 Mar 2023 00:36:21 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432831.7.315.286180|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581382.397.30.332977|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1327,10 +1486,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/uDq_s0T4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/AbL455-4k response: body: - string: '{"message":"id is invalid","traceID":"b436cbf67f7b1c4399d08842b996d87d"}' + string: '{"message":"id is invalid","traceID":"36a8aa62f8411680f60b947dd03c6516"}' headers: cache-control: - no-cache @@ -1338,25 +1497,30 @@ interactions: - keep-alive content-length: - '72' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3kmBC/utNDbs7Q4IQeR4Kg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:51 GMT + - Sun, 12 Mar 2023 00:36:22 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432832.375.308.230105|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581383.06.29.97769|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1376,38 +1540,41 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/uDq_s0T4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/AbL455-4k response: body: - string: '{"id":48,"uid":"uDq_s0T4z","title":"Test Folder","url":"/dashboards/f/uDq_s0T4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-01-23T00:13:48Z","updatedBy":"example@example.com","updated":"2023-01-23T00:13:48Z","version":1}' + string: '{"id":25,"uid":"AbL455-4k","title":"Test Folder","url":"/dashboards/f/AbL455-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:36:19Z","updatedBy":"example@example.com","updated":"2023-03-12T00:36:19Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '317' + - '332' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-RYsz81oo66FtCqVIRlZ3mQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:52 GMT + - Sun, 12 Mar 2023 00:36:22 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432832.956.309.135925|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581383.628.30.788719|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1429,38 +1596,41 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/uDq_s0T4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/AbL455-4k response: body: - string: '{"id":48,"uid":"uDq_s0T4z","title":"Test Folder Update","url":"/dashboards/f/uDq_s0T4z/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-01-23T00:13:48Z","updatedBy":"example@example.com","updated":"2023-01-23T00:13:52Z","version":2}' + string: '{"id":25,"uid":"AbL455-4k","title":"Test Folder Update","url":"/dashboards/f/AbL455-4k/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:36:19Z","updatedBy":"example@example.com","updated":"2023-03-12T00:36:23Z","version":2,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '331' + - '346' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ADCnQMoX79JUR2ysB4PqDw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:52 GMT + - Sun, 12 Mar 2023 00:36:23 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432833.533.307.437595|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581384.47.30.273361|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1483,8 +1653,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":24,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":48,"uid":"uDq_s0T4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"AbL455-4k","title":"Test Folder Update"}]' headers: cache-control: @@ -1492,28 +1661,31 @@ interactions: connection: - keep-alive content-length: - - '223' + - '148' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yJmCLZgrznp9pK1PUdK50g';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:53 GMT + - Sun, 12 Mar 2023 00:36:24 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432834.25.310.230172|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581385.163.28.701476|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1536,7 +1708,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update response: body: - string: '{"message":"id is invalid","traceID":"39c1ab46b1e01440a1bfd51a9d8906b1"}' + string: '{"message":"id is invalid","traceID":"c354f1f91e5da924aeaed9e4d87d88e7"}' headers: cache-control: - no-cache @@ -1544,25 +1716,30 @@ interactions: - keep-alive content-length: - '72' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-4C1nlmZWPSSsGO8qP0oXXw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:53 GMT + - Sun, 12 Mar 2023 00:36:24 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432834.921.308.295683|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581385.823.29.296827|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1593,25 +1770,30 @@ interactions: - keep-alive content-length: - '51' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rz6KKX6jyRHABEyepXhOkw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:54 GMT + - Sun, 12 Mar 2023 00:36:25 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432835.468.310.976438|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581386.366.29.390|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1634,8 +1816,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":24,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":48,"uid":"uDq_s0T4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"AbL455-4k","title":"Test Folder Update"}]' headers: cache-control: @@ -1643,28 +1824,31 @@ interactions: connection: - keep-alive content-length: - - '223' + - '148' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-irtf8DxNHAjM/PcJWrHJ0Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:55 GMT + - Sun, 12 Mar 2023 00:36:25 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432836.039.315.9060|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581386.911.27.335689|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1686,39 +1870,41 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/uDq_s0T4z + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/AbL455-4k response: body: - string: '{"id":48,"message":"Folder Test Folder Update deleted","title":"Test - Folder Update"}' + string: '' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '84' + - '0' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1QAObrtKXHM6c/2x2/6bQQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:55 GMT + - Sun, 12 Mar 2023 00:36:26 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432836.791.307.214936|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581387.451.32.521303|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1741,36 +1927,38 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":24,"uid":"PrometheusMDM","title":"Azure - Monitor Container Insights"},{"id":12,"uid":"geneva","title":"Geneva"}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"}]' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '166' + - '91' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-59KJEKn9fdc5AIxZiw6P1A';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:56 GMT + - Sun, 12 Mar 2023 00:36:27 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432837.573.308.691591|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581388.182.29.974383|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1796,8 +1984,8 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":4,"uid":"DYVus0oVz","orgId":1,"name":"Test Azure - Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource + string: '{"datasource":{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure + Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: cache-control: @@ -1807,26 +1995,29 @@ interactions: content-length: - '461' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jaKQKqciWq3zJ6wl3HwXwA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:57 GMT + - Sun, 12 Mar 2023 00:36:27 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432838.242.310.23403|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581388.839.30.292184|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1849,7 +2040,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"DYVus0oVz","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -1859,26 +2050,29 @@ interactions: content-length: - '370' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-a7noKqq4TTSSYU+LP0lRsg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:58 GMT + - Sun, 12 Mar 2023 00:36:28 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432838.973.316.4012|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581389.524.27.100364|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1901,7 +2095,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"DYVus0oVz","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -1911,26 +2105,29 @@ interactions: content-length: - '370' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-eS9eYV7ipsanIr5G2UQipw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:58 GMT + - Sun, 12 Mar 2023 00:36:29 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432839.641.308.441008|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581390.184.27.684776|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -1953,11 +2150,11 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/4 + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/3 response: body: - string: '{"datasource":{"id":4,"uid":"DYVus0oVz","orgId":1,"name":"Test Azure - Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource + string: '{"datasource":{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure + Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource updated","name":"Test Azure Monitor Data Source"}' headers: cache-control: @@ -1967,26 +2164,29 @@ interactions: content-length: - '463' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-W5NqevXddQiunKNwdHkUHQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:59 GMT + - Sun, 12 Mar 2023 00:36:29 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432840.672.315.648092|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581390.732.32.152046|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2010,9 +2210,8 @@ interactions: response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure - Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"prometheus-mdm","orgId":1,"name":"Azure - Monitor Container Insights","type":"prometheus","typeName":"Prometheus","typeLogoUrl":"public/app/plugins/datasource/prometheus/img/prometheus_logo.svg","access":"proxy","url":"https://az-ncus.prod.prometheusmetrics.trafficmanager.net","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"},"httpHeaderName1":"mdmAccountName","httpMethod":"POST","manageAlerts":false,"timeInterval":"30s"},"readOnly":false},{"id":3,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"DYVus0oVz","orgId":1,"name":"Test + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -2021,28 +2220,31 @@ interactions: connection: - keep-alive content-length: - - '1672' + - '1155' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nGtjLT9rF6Zzx/+5AL3+oA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:00 GMT + - Sun, 12 Mar 2023 00:36:30 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432841.39.310.188087|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581391.405.30.751422|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2065,7 +2267,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"DYVus0oVz","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2075,26 +2277,29 @@ interactions: content-length: - '370' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9nTLMTF4QXgv20Y6L5iJSg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:01 GMT + - Sun, 12 Mar 2023 00:36:31 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432842.068.309.64365|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581392.06.27.182148|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2116,10 +2321,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/DYVus0oVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/LbCVc5-4k response: body: - string: '{"id":4,"message":"Data source deleted"}' + string: '{"id":3,"message":"Data source deleted"}' headers: cache-control: - no-cache @@ -2128,26 +2333,29 @@ interactions: content-length: - '40' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-loh373VItFYIRL8unLhMOw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:01 GMT + - Sun, 12 Mar 2023 00:36:31 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432842.648.317.284123|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581392.6.30.318569|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2171,8 +2379,7 @@ interactions: response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure - Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"prometheus-mdm","orgId":1,"name":"Azure - Monitor Container Insights","type":"prometheus","typeName":"Prometheus","typeLogoUrl":"public/app/plugins/datasource/prometheus/img/prometheus_logo.svg","access":"proxy","url":"https://az-ncus.prod.prometheusmetrics.trafficmanager.net","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"},"httpHeaderName1":"mdmAccountName","httpMethod":"POST","manageAlerts":false,"timeInterval":"30s"},"readOnly":false},{"id":3,"uid":"Geneva","orgId":1,"name":"Geneva + Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false}]' headers: cache-control: @@ -2180,28 +2387,31 @@ interactions: connection: - keep-alive content-length: - - '1276' + - '759' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YEc6zhOK/s0ju/xjMDhQ5w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:02 GMT + - Sun, 12 Mar 2023 00:36:32 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.364.308.297920|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581393.282.29.274019|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2227,7 +2437,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '{"id":1,"uid":"WdcXyAT4k","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-01-23T00:14:03.088365587Z","updated":"2023-01-23T00:14:03.088365687Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32.982017177Z","updated":"2023-03-12T00:36:32.982017177Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2236,26 +2446,29 @@ interactions: content-length: - '340' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AIB521OiJeWxcurBo46UGg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:03 GMT + - Sun, 12 Mar 2023 00:36:32 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432844.05.315.588525|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581393.963.28.571771|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2275,10 +2488,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/WdcXyAT4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/xbiIc5aVz response: body: - string: '{"message":"notificationId is invalid","traceID":"8e6e90e4ea78ae42bba8e0288bc26d71"}' + string: '{"message":"notificationId is invalid","traceID":"f406875d79c3120f59462ef85713766b"}' headers: cache-control: - no-cache @@ -2286,25 +2499,30 @@ interactions: - keep-alive content-length: - '84' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8ZsRdZz2EEgl5PLgEk2bEA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:03 GMT + - Sun, 12 Mar 2023 00:36:33 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432844.753.308.486256|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581394.639.27.542562|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2324,10 +2542,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/WdcXyAT4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/xbiIc5aVz response: body: - string: '{"id":1,"uid":"WdcXyAT4k","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-01-23T00:14:03Z","updated":"2023-01-23T00:14:03Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:32Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2336,26 +2554,29 @@ interactions: content-length: - '320' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6Fuw+nUkPv/Q0SvA+fy3+g';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:04 GMT + - Sun, 12 Mar 2023 00:36:34 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432845.309.317.260210|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581395.168.29.731546|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2375,10 +2596,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/WdcXyAT4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/xbiIc5aVz response: body: - string: '{"message":"notificationId is invalid","traceID":"5bcad548194d2f46a6ef24dfd04e10a9"}' + string: '{"message":"notificationId is invalid","traceID":"6a8b4d34d38d54179187671f7b9c8f81"}' headers: cache-control: - no-cache @@ -2386,25 +2607,30 @@ interactions: - keep-alive content-length: - '84' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-tTwBzvu060F8tvZCW5B5eA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:05 GMT + - Sun, 12 Mar 2023 00:36:34 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432846.003.309.704673|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581395.831.28.457950|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2424,10 +2650,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/WdcXyAT4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/xbiIc5aVz response: body: - string: '{"id":1,"uid":"WdcXyAT4k","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-01-23T00:14:03Z","updated":"2023-01-23T00:14:03Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:32Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2436,26 +2662,29 @@ interactions: content-length: - '320' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-b/MI7hPFfufXiYqj3DJcjg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:05 GMT + - Sun, 12 Mar 2023 00:36:35 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432846.583.317.294421|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581396.392.27.904651|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2481,7 +2710,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/1 response: body: - string: '{"id":1,"uid":"WdcXyAT4k","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-01-23T00:14:03Z","updated":"2023-01-23T00:14:06Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:35Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2490,26 +2719,29 @@ interactions: content-length: - '320' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7o9biqf4EmcQySvuZrcmUA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:06 GMT + - Sun, 12 Mar 2023 00:36:35 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432847.157.310.354998|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581396.931.31.972492|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2532,7 +2764,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '[{"id":1,"uid":"WdcXyAT4k","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-01-23T00:14:03Z","updated":"2023-01-23T00:14:06Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' + string: '[{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:35Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' headers: cache-control: - no-cache @@ -2541,26 +2773,29 @@ interactions: content-length: - '322' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+M0ujDOr3jlRTFHxg5Dl8w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:06 GMT + - Sun, 12 Mar 2023 00:36:36 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432847.867.317.459117|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581397.602.28.519407|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2580,10 +2815,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/WdcXyAT4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/xbiIc5aVz response: body: - string: '{"message":"notificationId is invalid","traceID":"1c089633bde0ca46881826cd3a865af7"}' + string: '{"message":"notificationId is invalid","traceID":"e5b8534efcd435c9f6746dbd2ce2e5b5"}' headers: cache-control: - no-cache @@ -2591,25 +2826,30 @@ interactions: - keep-alive content-length: - '84' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8np8G2mRb+N+ybyYs7lS1w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:07 GMT + - Sun, 12 Mar 2023 00:36:37 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432848.549.309.912072|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581398.263.30.497585|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2629,10 +2869,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/WdcXyAT4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/xbiIc5aVz response: body: - string: '{"id":1,"uid":"WdcXyAT4k","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-01-23T00:14:03Z","updated":"2023-01-23T00:14:06Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:35Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2641,26 +2881,29 @@ interactions: content-length: - '320' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1whQ4ra9H7P7HM54SdiFUA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:08 GMT + - Sun, 12 Mar 2023 00:36:37 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432849.118.307.489499|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581398.811.29.897760|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2694,26 +2937,29 @@ interactions: content-length: - '34' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dZm3p4Y6Aea5bouquPoWcA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:08 GMT + - Sun, 12 Mar 2023 00:36:38 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432849.703.318.478899|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581399.357.29.206232|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2745,26 +2991,29 @@ interactions: content-length: - '2' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LnksG4f3n+QzL0ZFhZc1sw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:09 GMT + - Sun, 12 Mar 2023 00:36:39 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432850.396.309.152665|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581400.016.28.868297|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2789,7 +3038,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":49,"slug":"test-dashboard","status":"success","uid":"MVaXs0oVz","url":"/d/MVaXs0oVz/test-dashboard","version":1}' + string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"5MDIc5-Vk","url":"/d/5MDIc5-Vk/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -2798,26 +3047,29 @@ interactions: content-length: - '118' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bTFeoNhmKSQOPVpKEbMS0Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:10 GMT + - Sun, 12 Mar 2023 00:36:39 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432851.07.309.35859|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581400.673.30.984425|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2837,46 +3089,49 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/MVaXs0oVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/5MDIc5-Vk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/MVaXs0oVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-01-23T00:14:10Z","updated":"2023-01-23T00:14:10Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":49,"title":"Test - Dashboard","uid":"MVaXs0oVz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/5MDIc5-Vk/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:36:39Z","updated":"2023-03-12T00:36:39Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":26,"title":"Test + Dashboard","uid":"5MDIc5-Vk","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '805' + - '832' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GGTZwG3Zob/Rb4Rt3DmU4Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:10 GMT + - Sun, 12 Mar 2023 00:36:40 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432851.795.315.123214|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581401.336.30.836525|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard", "uid": "MVaXs0oVz", "version": + body: '{"dashboard": {"title": "Test Dashboard", "uid": "5MDIc5-Vk", "version": 1}, "overwrite": true}' headers: Accept: @@ -2895,7 +3150,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":49,"slug":"test-dashboard","status":"success","uid":"MVaXs0oVz","url":"/d/MVaXs0oVz/test-dashboard","version":2}' + string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"5MDIc5-Vk","url":"/d/5MDIc5-Vk/test-dashboard","version":2}' headers: cache-control: - no-cache @@ -2904,26 +3159,29 @@ interactions: content-length: - '118' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ImB5kcDZwEgiesJTOZsFng';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:11 GMT + - Sun, 12 Mar 2023 00:36:41 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432852.503.309.163077|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581402.009.28.787420|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -2943,108 +3201,63 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":15,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":8,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":19,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":21,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes - / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":27,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes - / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes - / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes - / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes - / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes - / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes - / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes - / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes - / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes - / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes - / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes - / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes - / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes - / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes - / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":41,"uid":"F4bizNZ7k","title":"Kubernetes - / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"VESDBJS7k","title":"Kubernetes - / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":46,"uid":"YCBDf1I7k","title":"Kubernetes - / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":13,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":42,"uid":"D4pVsnCGz","title":"Nodes - (Node exporter)","uri":"db/nodes-node-exporter","url":"/d/D4pVsnCGz/nodes-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":23,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":47,"uid":"UskST-Snz","title":"Prometheus-Collector - Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":14,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":49,"uid":"MVaXs0oVz","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/MVaXs0oVz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":43,"uid":"VdrOA7jGz","title":"USE - Method / Cluster (Node exporter)","uri":"db/use-method-cluster-node-exporter","url":"/d/VdrOA7jGz/use-method-cluster-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":44,"uid":"t5ajanjMk","title":"USE - Method / Node (Node exporter)","uri":"db/use-method-node-node-exporter","url":"/d/t5ajanjMk/use-method-node-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":18,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"5MDIc5-Vk","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/5MDIc5-Vk/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":14,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jZwA6qZSnnydArv6c5KFOA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:12 GMT + - Sun, 12 Mar 2023 00:36:41 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432853.233.316.348374|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581402.693.29.766786|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -3052,7 +3265,61 @@ interactions: x-content-type-options: - nosniff x-frame-options: - - deny + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zlWTbu56a2lasOJUBsUTfQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sun, 12 Mar 2023 00:36:42 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678581403.243.29.920147|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY x-xss-protection: - 1; mode=block status: @@ -3074,10 +3341,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/MVaXs0oVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/5MDIc5-Vk response: body: - string: '{"id":49,"message":"Dashboard Test Dashboard deleted","title":"Test + string: '{"id":26,"message":"Dashboard Test Dashboard deleted","title":"Test Dashboard"}' headers: cache-control: @@ -3087,26 +3354,29 @@ interactions: content-length: - '79' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fDR+GcokspXiXXiN4R/yIQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:13 GMT + - Sun, 12 Mar 2023 00:36:42 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432854.08.307.690903|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581403.9.27.720055|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: - nosniff x-frame-options: - - deny + - DENY x-xss-protection: - 1; mode=block status: @@ -3126,107 +3396,62 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":15,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":8,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":19,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"vkQ0UHxiddk","title":"CoreDNS","uri":"db/coredns","url":"/d/vkQ0UHxiddk/coredns","slug":"","type":"dash-db","tags":["coredns-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":21,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"09ec8aa1e996d6ffcd6817bbaff4db1b","title":"Kubernetes - / API server","uri":"db/kubernetes-api-server","url":"/d/09ec8aa1e996d6ffcd6817bbaff4db1b/kubernetes-api-server","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":27,"uid":"efa86fd1d0c121a26444b636a3f509a8","title":"Kubernetes - / Compute Resources / Cluster","uri":"db/kubernetes-compute-resources-cluster","url":"/d/efa86fd1d0c121a26444b636a3f509a8/kubernetes-compute-resources-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":28,"uid":"85a562078cdf77779eaa1add43ccec1e","title":"Kubernetes - / Compute Resources / Namespace (Pods)","uri":"db/kubernetes-compute-resources-namespace-pods","url":"/d/85a562078cdf77779eaa1add43ccec1e/kubernetes-compute-resources-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":29,"uid":"a87fb0d919ec0ea5f6543124e16c42a5","title":"Kubernetes - / Compute Resources / Namespace (Workloads)","uri":"db/kubernetes-compute-resources-namespace-workloads","url":"/d/a87fb0d919ec0ea5f6543124e16c42a5/kubernetes-compute-resources-namespace-workloads","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":30,"uid":"200ac8fdbfbb74b39aff88118e4d1c2c","title":"Kubernetes - / Compute Resources / Node (Pods)","uri":"db/kubernetes-compute-resources-node-pods","url":"/d/200ac8fdbfbb74b39aff88118e4d1c2c/kubernetes-compute-resources-node-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":31,"uid":"6581e46e4e5c7ba40a07646395ef7b23","title":"Kubernetes - / Compute Resources / Pod","uri":"db/kubernetes-compute-resources-pod","url":"/d/6581e46e4e5c7ba40a07646395ef7b23/kubernetes-compute-resources-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":32,"uid":"a164a7f0339f99e89cea5cb47e9be617","title":"Kubernetes - / Compute Resources / Workload","uri":"db/kubernetes-compute-resources-workload","url":"/d/a164a7f0339f99e89cea5cb47e9be617/kubernetes-compute-resources-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":33,"uid":"3138fa155d5915769fbded898ac09ff9","title":"Kubernetes - / Kubelet","uri":"db/kubernetes-kubelet","url":"/d/3138fa155d5915769fbded898ac09ff9/kubernetes-kubelet","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":34,"uid":"ff635a025bcfea7bc3dd4f508990a3e9","title":"Kubernetes - / Networking / Cluster","uri":"db/kubernetes-networking-cluster","url":"/d/ff635a025bcfea7bc3dd4f508990a3e9/kubernetes-networking-cluster","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":35,"uid":"8b7a8b326d7a6f1f04244066368c67af","title":"Kubernetes - / Networking / Namespace (Pods)","uri":"db/kubernetes-networking-namespace-pods","url":"/d/8b7a8b326d7a6f1f04244066368c67af/kubernetes-networking-namespace-pods","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":36,"uid":"bbb2a765a623ae38130206c7d94a160f","title":"Kubernetes - / Networking / Namespace (Workload)","uri":"db/kubernetes-networking-namespace-workload","url":"/d/bbb2a765a623ae38130206c7d94a160f/kubernetes-networking-namespace-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":37,"uid":"7a18067ce943a40ae25454675c19ff5c","title":"Kubernetes - / Networking / Pod","uri":"db/kubernetes-networking-pod","url":"/d/7a18067ce943a40ae25454675c19ff5c/kubernetes-networking-pod","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":38,"uid":"728bf77cc1166d2f3133bf25846876cc","title":"Kubernetes - / Networking / Workload","uri":"db/kubernetes-networking-workload","url":"/d/728bf77cc1166d2f3133bf25846876cc/kubernetes-networking-workload","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":39,"uid":"919b92a8e8041bd567af9edab12c840c","title":"Kubernetes - / Persistent Volumes","uri":"db/kubernetes-persistent-volumes","url":"/d/919b92a8e8041bd567af9edab12c840c/kubernetes-persistent-volumes","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":40,"uid":"632e265de029684c40b21cb76bca4f94","title":"Kubernetes - / Proxy","uri":"db/kubernetes-proxy","url":"/d/632e265de029684c40b21cb76bca4f94/kubernetes-proxy","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":41,"uid":"F4bizNZ7k","title":"Kubernetes - / StatefulSets","uri":"db/kubernetes-statefulsets","url":"/d/F4bizNZ7k/kubernetes-statefulsets","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":45,"uid":"VESDBJS7k","title":"Kubernetes - / USE Method / Cluster(Windows)","uri":"db/kubernetes-use-method-cluster-windows","url":"/d/VESDBJS7k/kubernetes-use-method-cluster-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":46,"uid":"YCBDf1I7k","title":"Kubernetes - / USE Method / Node(Windows)","uri":"db/kubernetes-use-method-node-windows","url":"/d/YCBDf1I7k/kubernetes-use-method-node-windows","slug":"","type":"dash-db","tags":["kubernetes-mixin"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":13,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":42,"uid":"D4pVsnCGz","title":"Nodes - (Node exporter)","uri":"db/nodes-node-exporter","url":"/d/D4pVsnCGz/nodes-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":23,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":47,"uid":"UskST-Snz","title":"Prometheus-Collector - Health","uri":"db/prometheus-collector-health","url":"/d/UskST-Snz/prometheus-collector-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":14,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":43,"uid":"VdrOA7jGz","title":"USE - Method / Cluster (Node exporter)","uri":"db/use-method-cluster-node-exporter","url":"/d/VdrOA7jGz/use-method-cluster-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":44,"uid":"t5ajanjMk","title":"USE - Method / Node (Node exporter)","uri":"db/use-method-node-node-exporter","url":"/d/t5ajanjMk/use-method-node-node-exporter","slug":"","type":"dash-db","tags":["node - exporter"],"isStarred":false,"folderId":24,"folderUid":"PrometheusMDM","folderTitle":"Azure - Monitor Container Insights","folderUrl":"/dashboards/f/PrometheusMDM/azure-monitor-container-insights","sortMeta":0},{"id":20,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":18,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hYRzAi0TllsYNPjGtqyJSQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:13 GMT + - Sun, 12 Mar 2023 00:36:43 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432854.817.310.166848|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678581404.589.30.753335|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -3234,7 +3459,61 @@ interactions: x-content-type-options: - nosniff x-frame-options: - - deny + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gu2q9fxcM2SzY1YDKvV/fg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sun, 12 Mar 2023 00:36:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678581405.152.28.393736|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY x-xss-protection: - 1; mode=block status: @@ -3259,18 +3538,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:52.1471466Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:52.1471466Z"},"identity":{"principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.2.7.1","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1016' + - '1065' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:14:15 GMT + - Sun, 12 Mar 2023 00:36:45 GMT etag: - - '"0100e7af-0000-0d00-0000-63cdd11a0000"' + - '"5a0005b5-0000-0d00-0000-640d1e650000"' expires: - '-1' pragma: @@ -3311,8 +3590,10 @@ interactions: body: string: 'null' headers: + api-supported-versions: + - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -3320,15 +3601,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:14:16 GMT + - Sun, 12 Mar 2023 00:36:47 GMT etag: - - '"0100fbaf-0000-0d00-0000-63cdd1590000"' + - '"5a0088b6-0000-0d00-0000-640d1e9f0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview pragma: - no-cache + request-context: + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -3356,10 +3639,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z"}' headers: cache-control: - no-cache @@ -3368,9 +3651,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:14:46 GMT + - Sun, 12 Mar 2023 00:36:47 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d008b46-0000-0d00-0000-640d1e9f0000"' expires: - '-1' pragma: @@ -3398,21 +3681,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:15:17 GMT + - Sun, 12 Mar 2023 00:37:17 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3440,21 +3723,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:15:47 GMT + - Sun, 12 Mar 2023 00:37:47 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3482,21 +3765,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:16:18 GMT + - Sun, 12 Mar 2023 00:38:18 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3524,21 +3807,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:16:48 GMT + - Sun, 12 Mar 2023 00:38:48 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3566,21 +3849,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:17:17 GMT + - Sun, 12 Mar 2023 00:39:18 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3608,21 +3891,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:17:47 GMT + - Sun, 12 Mar 2023 00:39:48 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3650,21 +3933,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:18:18 GMT + - Sun, 12 Mar 2023 00:40:19 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3692,21 +3975,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:18:49 GMT + - Sun, 12 Mar 2023 00:40:49 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3734,21 +4017,189 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-01-23T00:14:17.0086783Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '515' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:41:18 GMT + etag: + - '"3d00b746-0000-0d00-0000-640d1eab0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + headers: + cache-control: + - no-cache + content-length: + - '515' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:41:49 GMT + etag: + - '"3d00b746-0000-0d00-0000-640d1eab0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + headers: + cache-control: + - no-cache + content-length: + - '515' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:42:20 GMT + etag: + - '"3d00b746-0000-0d00-0000-640d1eab0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + headers: + cache-control: + - no-cache + content-length: + - '515' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:42:50 GMT + etag: + - '"3d00b746-0000-0d00-0000-640d1eab0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + headers: + cache-control: + - no-cache + content-length: + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:19:18 GMT + - Sun, 12 Mar 2023 00:43:20 GMT etag: - - '"1c004e45-0000-0d00-0000-63cdd1590000"' + - '"3d00b746-0000-0d00-0000-640d1eab0000"' expires: - '-1' pragma: @@ -3776,21 +4227,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","name":"46f7e268-fa20-4b30-a313-edefb68b5d49*86AE0C0B3E43CB2504A8224A13DE0BEB171C73978B67043A7520A8C8C463B806","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-01-23T00:14:17.0086783Z","properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-12T00:36:47.1305517Z","endTime":"2023-03-12T00:43:31.997569Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '523' + - '574' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:19:49 GMT + - Sun, 12 Mar 2023 00:43:51 GMT etag: - - '"71004ea7-0000-0c00-0000-63cdd28c0000"' + - '"3d006b4c-0000-0d00-0000-640d20330000"' expires: - '-1' pragma: @@ -3825,10 +4276,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27d115507b-f8a5-4761-9b87-89ce735c09df%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%2790b7eca7-08e2-400f-96ea-1b46695de291%27&api-version=2020-04-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:36.7275748Z","updatedOn":"2023-01-23T00:13:36.7275748Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:08.7410135Z","updatedOn":"2023-03-12T00:36:08.7410135Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' headers: cache-control: - no-cache @@ -3837,7 +4288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:19:50 GMT + - Sun, 12 Mar 2023 00:43:51 GMT expires: - '-1' pragma: @@ -3881,7 +4332,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"d115507b-f8a5-4761-9b87-89ce735c09df","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:36.7275748Z","updatedOn":"2023-01-23T00:13:36.7275748Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:08.7410135Z","updatedOn":"2023-03-12T00:43:51.9042970Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -3890,7 +4341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:19:52 GMT + - Sun, 12 Mar 2023 00:43:53 GMT expires: - '-1' pragma: @@ -3925,16 +4376,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwscus","name":"yugangwscus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-22T00:36:56.3893044Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-22T04:46:34.5139318Z"},"identity":{"principalId":"011ffbe2-ab76-4572-8221-9f97719b08b2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"grafanaVersion":"9.3.2.2","endpoint":"https://yugangwscus-areycch9c2a9hba9.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","provisioningState":"Succeeded","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-20T00:53:01.4642177Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgdzzbgt34ji7nufr6dtq5eo6ry67hnkx5brtwshnsj7eioqbi7z2volqk72kip7o/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '2316' + - '3609' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:19:54 GMT + - Sun, 12 Mar 2023 00:43:54 GMT expires: - '-1' pragma: @@ -3946,19 +4397,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 9c5b69bb-7998-4ca0-b6f8-dd13d49d3b1f - - 6440c26c-6043-4a14-9f40-055486a72c0b - - 06ae2004-4945-4855-a36a-6cdcb0e1e6b8 - - c9b0c4e2-4bbb-44d4-bf9b-27aee248d37f - - 6cf06de0-269a-483f-9bc4-6aa16f503c7a - - bf4cf7e4-a50d-4110-a69f-a1777d709c5d - - 32c737d9-03d3-4697-974a-f1f95bc7eb5c - - bd228770-c5f8-4975-8b7f-d4639ea8f856 - - bcdf2bcd-1a24-497c-bcc7-4264e3a8ea5a - - e180e47c-6741-4eae-87ee-9dcdc086abf0 - - e6754745-093e-4c73-9832-70a8b9a13946 - - cfd3dbb5-c04a-45e5-8bb2-3882d2c11383 - - 76f58b49-3a6d-4568-ad4f-b039d359c1b1 + - 86b3bf76-860e-4237-b228-2a92bdfe3d4c + - 883a37f3-c6c1-43ec-8fcc-65a66646844f + - 54d69521-fe0b-4077-bec2-83fcbf3116cb + - 0b41625a-089d-4f1e-b63a-58abb0c58744 + - 5f27d112-b517-4de1-bcf5-e642e9389517 + - 7f5ec48d-c51b-4a89-bf94-4a616b711914 + - f5916094-1357-44f9-9d0e-d20de6156258 + - 8d0d803b-d662-4f9d-b331-e944f3cec1d7 + - ef68ff79-247b-4d68-ab92-5df4f3450980 + - 513f8253-52dd-4058-bd29-d080b1415407 + - 00aa2249-c310-4dc7-a666-5890b7788f0d + - c0c28d7f-3bd0-4eb5-9603-2fe2ee031def + - 1a375c3c-2965-4a0c-97c9-0eee94b38603 status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml index d9c065120df..9bf8b508e3b 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml @@ -23,30 +23,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.7155255Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.7155255Z"},"identity":{"principalId":"2218eee3-434e-43c1-a202-10bd63d99133","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.410051Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1106' + - '1155' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:08:47 GMT + - Sun, 12 Mar 2023 01:04:58 GMT etag: - - '"00000e28-0000-0600-0000-63cdd00f0000"' + - '"d8002717-0000-0600-0000-640d253a0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -54,7 +54,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -74,67 +74,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' - headers: - cache-control: - - no-cache - content-length: - - '513' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 23 Jan 2023 00:09:17 GMT - etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:09:48 GMT + - Sun, 12 Mar 2023 01:04:58 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -166,21 +120,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:10:17 GMT + - Sun, 12 Mar 2023 01:05:28 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -212,21 +166,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:10:47 GMT + - Sun, 12 Mar 2023 01:05:58 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -258,21 +212,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:11:17 GMT + - Sun, 12 Mar 2023 01:06:28 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -304,21 +258,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:11:47 GMT + - Sun, 12 Mar 2023 01:06:59 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -350,21 +304,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:12:18 GMT + - Sun, 12 Mar 2023 01:07:29 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -396,21 +350,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:12:48 GMT + - Sun, 12 Mar 2023 01:07:58 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -442,21 +396,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-01-23T00:08:47.8115562Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' headers: cache-control: - no-cache content-length: - - '513' + - '512' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:18 GMT + - Sun, 12 Mar 2023 01:08:29 GMT etag: - - '"44008cb4-0000-0600-0000-63cdd00f0000"' + - '"5f002d5d-0000-0600-0000-640d253a0000"' expires: - '-1' pragma: @@ -488,21 +442,21 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","name":"8243b5de-1a4e-4b62-a8ed-9bdac1ce3d03*358140F7AB30FA334892926AE3A2A90A8052CB47AD63544AB6E883B51F67276F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2023-01-23T00:08:47.8115562Z","endTime":"2023-01-23T00:13:22.7604679Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2023-03-12T01:04:58.427942Z","endTime":"2023-03-12T01:08:51.3661097Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '584' + - '583' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:48 GMT + - Sun, 12 Mar 2023 01:08:59 GMT etag: - - '"440051bf-0000-0600-0000-63cdd1220000"' + - '"5f00345d-0000-0600-0000-640d26230000"' expires: - '-1' pragma: @@ -537,18 +491,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.7155255Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.7155255Z"},"identity":{"principalId":"2218eee3-434e-43c1-a202-10bd63d99133","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.410051Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1027' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:48 GMT + - Sun, 12 Mar 2023 01:08:59 GMT etag: - - '"00001b28-0000-0600-0000-63cdd1220000"' + - '"d8003117-0000-0600-0000-640d26230000"' expires: - '-1' pragma: @@ -584,9 +538,9 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a82fbf69-b4d7-49f4-83a6-915b2cf354f4","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"LearningAppServiceInTeams","servicePlanId":"b76fb638-6ba6-402a-b9f9-83d28acb3d86"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2023-02-11T23:04:06Z","capabilityStatus":"Deleted","service":"YammerEnterprise","servicePlanId":"a82fbf69-b4d7-49f4-83a6-915b2cf354f4"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"c244cc9e-622f-4576-92ea-82e233e44e36"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL - SWE MANAGER","lastDirSyncTime":"2023-01-20T00:31:36Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + SWE MANAGER","lastDirSyncTime":"2023-03-06T18:01:28Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First @@ -600,8 +554,8 @@ interactions: Wang (Volt)","X500:/O=Microsoft/OU=APPS-WGA/cn=Recipients/cn=yugangw","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang5ec8094e-2aed-488b-a327-9baed3c38367","SMTP:example@example.com","smtp:a-ywang2@microsoft.com","smtp:yugangw@msg.microsoft.com","x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang (Volt)","smtp:YUGANGW@service.microsoft.com"],"refreshTokensValidFromDateTime":"2019-08-29T00:11:39Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"example@example.com","state":null,"streetAddress":null,"surname":"Wang","telephoneNumber":"+1 - (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Qing - Ye","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"128505","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"QINGYE","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"144840","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Brahmnes + Fung","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"BFUNG","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"138058"}' headers: access-control-allow-origin: @@ -609,25 +563,25 @@ interactions: cache-control: - no-cache content-length: - - '25292' + - '25938' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Mon, 23 Jan 2023 00:13:49 GMT + - Sun, 12 Mar 2023 01:08:59 GMT duration: - - '1552321' + - '1546356' expires: - '-1' ocp-aad-diagnostics-server-name: - - K9WzdHJOg5LseP2vL/irNO9xPyvDqDMl1F0E/ytfJc4= + - xTd8xvTuq1dweLqP1AcL+kh8+62p8XdDmW5DTNMaMu8= ocp-aad-session-key: - - 0gDg9g02JZwxvtq_uA9JpQbkE-yPyCThWfyAjjzML3zvoaOQEWEcxkDnFwGLYgHLP2AHl7ETxHYQGxjC17ORDkVz2wIsixP-Zo3fBN4RImTeB7KorN0vtBg5UbXIzcin.9qmGRcdprFZYMfbNo4dMgP31FFt8ubXxguHOFRyWn8o + - duHyUrLX-r2CkrffOiyU4chCKu-c7M4AIXGUTL_k0uiWovblGprsUGVG0bPnAioGgQ6bJ91nId1ZW5tERKuWtEOw4_8mWXtT3QmMM-WxUTOxINTPcEn9Wo6TBuJZyJZV.ldfJMAIQP0cP4jdwjFI5VSzlzbpPeXJD3mVG_rapqNk pragma: - no-cache request-id: - - 23fdac3f-d225-4876-9979-cac50c7a1407 + - f30a9ba2-c691-48d4-a655-77bf589b9e2b strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -673,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:49 GMT + - Sun, 12 Mar 2023 01:08:59 GMT expires: - '-1' pragma: @@ -718,7 +672,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:50.5261279Z","updatedOn":"2023-01-23T00:13:50.9323848Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T01:09:01.2000375Z","updatedOn":"2023-03-12T01:09:01.6270248Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -727,7 +681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:52 GMT + - Sun, 12 Mar 2023 01:09:03 GMT expires: - '-1' pragma: @@ -775,7 +729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:53 GMT + - Sun, 12 Mar 2023 01:09:03 GMT expires: - '-1' pragma: @@ -795,7 +749,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "2218eee3-434e-43c1-a202-10bd63d99133"}}' + "principalId": "88e2c501-898b-400c-9048-c37cb79e3781"}}' headers: Accept: - application/json @@ -820,7 +774,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2218eee3-434e-43c1-a202-10bd63d99133","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:53.4408385Z","updatedOn":"2023-01-23T00:13:53.8783158Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"88e2c501-898b-400c-9048-c37cb79e3781","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T01:09:04.0259494Z","updatedOn":"2023-03-12T01:09:04.4809582Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -829,7 +783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:55 GMT + - Sun, 12 Mar 2023 01:09:06 GMT expires: - '-1' pragma: @@ -864,18 +818,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.7155255Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.7155255Z"},"identity":{"principalId":"2218eee3-434e-43c1-a202-10bd63d99133","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.410051Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1027' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:55 GMT + - Sun, 12 Mar 2023 01:09:06 GMT etag: - - '"00001b28-0000-0600-0000-63cdd1220000"' + - '"d8003117-0000-0600-0000-640d26230000"' expires: - '-1' pragma: @@ -897,8 +851,9 @@ interactions: body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Enabled", "zoneRedundancy": "Disabled", "apiKey": "Enabled", "deterministicOutboundIP": "Disabled", "autoGeneratedDomainNameLabelScope": "TenantReuse", "grafanaIntegrations": - {"azureMonitorWorkspaceIntegrations": []}}, "identity": {"type": "SystemAssigned"}, - "tags": {}, "location": "westcentralus"}' + {"azureMonitorWorkspaceIntegrations": []}, "grafanaConfigurations": {"smtp": + {"enabled": false}}}, "identity": {"type": "SystemAssigned"}, "tags": {}, "location": + "westcentralus"}' headers: Accept: - application/json @@ -909,7 +864,7 @@ interactions: Connection: - keep-alive Content-Length: - - '368' + - '423' Content-Type: - application/json ParameterSetName: @@ -920,26 +875,26 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.7155255Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:13:56.4707357Z"},"identity":{"principalId":"2218eee3-434e-43c1-a202-10bd63d99133","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:09:07.7330226Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1111' + - '1159' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:56 GMT + - Sun, 12 Mar 2023 01:09:07 GMT etag: - - '"00001c28-0000-0600-0000-63cdd1450000"' + - '"d8003317-0000-0600-0000-640d26340000"' expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -951,7 +906,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -974,18 +929,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.7155255Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:13:56.4707357Z"},"identity":{"principalId":"2218eee3-434e-43c1-a202-10bd63d99133","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:09:07.7330226Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1111' + - '1159' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:58 GMT + - Sun, 12 Mar 2023 01:09:08 GMT etag: - - '"00001c28-0000-0600-0000-63cdd1450000"' + - '"d8003317-0000-0600-0000-640d26340000"' expires: - '-1' pragma: @@ -1029,20 +984,23 @@ interactions: content-length: - '2' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-mgD03URD1IyQL9cV8FdbLA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:13:59 GMT + - Sun, 12 Mar 2023 01:09:11 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432839.301.31.133693|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678583350.233.440.978251|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1073,7 +1031,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":1,"name":"apikey1","key":"eyJrIjoicWxON0ZTYVlwaEQ4OGZVWTc2bEdScHVvYkFyUjIxZG8iLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' + string: '{"id":1,"name":"apikey1","key":"eyJrIjoiZUJuUlhybldDSzVrM3RLSVpsMTNOYldUbGNjNHlPdTciLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1082,20 +1040,23 @@ interactions: content-length: - '118' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-qxW14s48FFNz3Eqx+MWf+g';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:01 GMT + - Sun, 12 Mar 2023 01:09:12 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432840.618.29.177110|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678583353.032.436.166795|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1126,7 +1087,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":2,"name":"apikey2","key":"eyJrIjoiU29XSzJjR1lOMDNrd3U1NTRkbXZMdEttZUFrdHAyTE8iLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' + string: '{"id":2,"name":"apikey2","key":"eyJrIjoiWDVpUE4wNTVoYnlHUkFNakJpc1Q5c0FEbmI0aXZ2ZFUiLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1135,19 +1096,22 @@ interactions: content-length: - '118' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x4aw6AAKtObkSTgb8FEdlw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:01 GMT + - Sun, 12 Mar 2023 01:09:12 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432842.648.30.453242|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678583353.872.442.86451|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1177,7 +1141,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-01-26T00:14:01Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-01-24T00:14:01Z"}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-15T01:09:12Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-13T01:09:12Z"}]' headers: cache-control: - no-cache @@ -1186,20 +1150,23 @@ interactions: content-length: - '156' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TpFUvIpumh02CeZ9EKHukQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:02 GMT + - Sun, 12 Mar 2023 01:09:13 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.228.27.829351|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678583354.186.440.292147|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1228,7 +1195,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-01-26T00:14:01Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-01-24T00:14:01Z"}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-15T01:09:12Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-13T01:09:12Z"}]' headers: cache-control: - no-cache @@ -1237,20 +1204,23 @@ interactions: content-length: - '156' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VBUf52qIE+1Soh1CTCdOPw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:02 GMT + - Sun, 12 Mar 2023 01:09:13 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.547.31.4215|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678583354.506.442.336435|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1290,20 +1260,23 @@ interactions: content-length: - '29' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VjYiI1qpI7kryZCyMueIUw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:02 GMT + - Sun, 12 Mar 2023 01:09:13 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.718.29.70023|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678583354.683.442.876507|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1329,58 +1302,61 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/search?type=dash-db + uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":18,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":2,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"sVKyjvpnz","title":"Incoming Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-uIz5LdfQj9cxBy5Ov1gJQw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:03 GMT + - Sun, 12 Mar 2023 01:09:14 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.997.28.631986|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678583354.961.435.34460|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1395,4 +1371,58 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pr0+sjgznIvqRPonZQxbPQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sun, 12 Mar 2023 01:09:14 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678583355.275.442.432907|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK version: 1 diff --git a/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml index 6c4b5943e4c..a3ebbe1c1ea 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml @@ -23,30 +23,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.65194Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.65194Z"},"identity":{"principalId":"aafb2e5f-7616-4149-b6c4-e6559889206b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:19.0904692Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1117' + - '1172' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:08:47 GMT + - Sun, 12 Mar 2023 00:30:20 GMT etag: - - '"00000f28-0000-0600-0000-63cdd0100000"' + - '"d8005d10-0000-0600-0000-640d1d1d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -74,10 +74,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:09:18 GMT + - Sun, 12 Mar 2023 00:30:20 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -120,10 +120,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:09:48 GMT + - Sun, 12 Mar 2023 00:30:51 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -166,10 +166,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:10:18 GMT + - Sun, 12 Mar 2023 00:31:21 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -212,10 +212,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:10:47 GMT + - Sun, 12 Mar 2023 00:31:50 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -258,10 +258,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:11:17 GMT + - Sun, 12 Mar 2023 00:32:20 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -304,10 +304,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:11:48 GMT + - Sun, 12 Mar 2023 00:32:51 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -350,10 +350,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:12:18 GMT + - Sun, 12 Mar 2023 00:33:21 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -396,10 +396,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -408,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:12:48 GMT + - Sun, 12 Mar 2023 00:33:50 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -442,10 +442,10 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-01-23T00:08:47.9779016Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' headers: cache-control: - no-cache @@ -454,9 +454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:18 GMT + - Sun, 12 Mar 2023 00:34:21 GMT etag: - - '"44008db4-0000-0600-0000-63cdd00f0000"' + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' expires: - '-1' pragma: @@ -488,10 +488,56 @@ interactions: User-Agent: - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","name":"86e49705-d2a5-42fa-ac06-0e42ba7045fe*938EC86DCD58AB72B07434C7145A6C08156AF28E4F96385597867E63A50D84E8","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Succeeded","startTime":"2023-01-23T00:08:47.9779016Z","endTime":"2023-01-23T00:13:20.5272315Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + headers: + cache-control: + - no-cache + content-length: + - '518' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 12 Mar 2023 00:34:51 GMT + etag: + - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Succeeded","startTime":"2023-03-12T00:30:20.4274825Z","endTime":"2023-03-12T00:35:02.7401085Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -500,9 +546,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:48 GMT + - Sun, 12 Mar 2023 00:35:21 GMT etag: - - '"440041bf-0000-0600-0000-63cdd1200000"' + - '"5f00bf5c-0000-0600-0000-640d1e360000"' expires: - '-1' pragma: @@ -537,18 +583,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.65194Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.65194Z"},"identity":{"principalId":"aafb2e5f-7616-4149-b6c4-e6559889206b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:19.0904692Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1038' + - '1091' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:48 GMT + - Sun, 12 Mar 2023 00:35:21 GMT etag: - - '"00001928-0000-0600-0000-63cdd1200000"' + - '"d8007110-0000-0600-0000-640d1e360000"' expires: - '-1' pragma: @@ -584,9 +630,9 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-01-21T00:10:05Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2022-12-14T02:55:00Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a30db067-cde1-49be-95bb-9619a8cc8617","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["a82fbf69-b4d7-49f4-83a6-915b2cf354f4","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["c815c93d-0759-4bb8-b857-bc921a71be83","7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"34715a50-7d92-426f-99e9-f815e0ae1de5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-03-07T17:20:59Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"LearningAppServiceInTeams","servicePlanId":"b76fb638-6ba6-402a-b9f9-83d28acb3d86"},{"assignedTimestamp":"2023-02-26T18:57:12Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2023-02-11T23:04:06Z","capabilityStatus":"Deleted","service":"YammerEnterprise","servicePlanId":"a82fbf69-b4d7-49f4-83a6-915b2cf354f4"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90"},{"assignedTimestamp":"2023-01-23T22:57:48Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"c244cc9e-622f-4576-92ea-82e233e44e36"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-15T23:13:29Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-09T23:14:02Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-08-07T02:18:34Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"fe47a034-ab6d-4cb4-bdb4-9551354b177e"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-03-06T07:12:31Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2021-04-15T15:12:57Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:12:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-11-03T16:30:18Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-08-14T15:32:15Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-11-04T20:01:59Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-14T20:43:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-27T23:17:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-30T00:32:45Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-21T00:27:48Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"5a10155d-f5c1-411a-a8ec-e99aae125390"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-28T18:54:42Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T01:47:06Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T02:14:40Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-01-09T10:35:29Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T03:27:36Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-17T18:29:20Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-07-06T19:19:58Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"2789c901-c14e-48ab-a76a-be334d9d793a"},{"assignedTimestamp":"2017-07-06T19:19:57Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T08:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-05-12T23:33:35Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2017-01-26T08:02:47Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-12-19T03:16:33Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-11-18T18:51:08Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2012-10-10T07:21:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-07-30T06:17:13Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure Dev Exp","dirSyncEnabled":true,"displayName":"Yugang Wang","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Yugang","immutableId":"138058","isCompromised":null,"jobTitle":"PRINCIPAL - SWE MANAGER","lastDirSyncTime":"2023-01-20T00:31:36Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang + SWE MANAGER","lastDirSyncTime":"2023-03-06T18:01:28Z","legalAgeGroupClassification":null,"mail":"example@example.com","mailNickname":"yugangw","mobile":null,"onPremisesDistinguishedName":"CN=Yugang Wang,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-415191","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3700FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/O=Nokia/OU=HUB/cn=Recipients/cn=yugangw","X500:/o=SDF/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=sdflabs.com-51490-Yugang Wang (Volt)e3d6fb0c","X500:/o=microsoft/ou=northamerica/cn=Recipients/cn=572513","X500:/o=microsoft/ou=First @@ -600,8 +646,8 @@ interactions: Wang (Volt)","X500:/O=Microsoft/OU=APPS-WGA/cn=Recipients/cn=yugangw","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang5ec8094e-2aed-488b-a327-9baed3c38367","SMTP:example@example.com","smtp:a-ywang2@microsoft.com","smtp:yugangw@msg.microsoft.com","x500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Yugang Wang (Volt)","smtp:YUGANGW@service.microsoft.com"],"refreshTokensValidFromDateTime":"2019-08-29T00:11:39Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"example@example.com","state":null,"streetAddress":null,"surname":"Wang","telephoneNumber":"+1 - (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Qing - Ye","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"128505","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"QINGYE","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + (425) 7069936","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a30db067-cde1-49be-95bb-9619a8cc8617/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"US","userIdentities":[],"userPrincipalName":"example@example.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"144840","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Brahmnes + Fung","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"BFUNG","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72580592","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"138058"}' headers: access-control-allow-origin: @@ -609,25 +655,25 @@ interactions: cache-control: - no-cache content-length: - - '25292' + - '25938' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Mon, 23 Jan 2023 00:13:49 GMT + - Sun, 12 Mar 2023 00:35:22 GMT duration: - - '881512' + - '1596443' expires: - '-1' ocp-aad-diagnostics-server-name: - - YoufsihkmoaNG8AH4bi2QaSMElwWoKneYXNxs7KqNA4= + - gYXL8Ys0yBAU65H1cShNFgrwPnZJdfXxE+opePIaGk0= ocp-aad-session-key: - - 70srKplBrV_TzO9aU4kAysdRR9nfcf-M0visodn4aQv6Ju-q4zsWrdITIiGKoRD5m0DQEsXBmwQ5XmKMUXdYs48z7SdYS6-RlmVPHgU_1xoHG12oTbwooIvAFbGK4BOC.aIjrgGQWzDVG6GceDB-A7EqCG6HZGXsbrXmzXaJ4rnM + - Ye4MkAD0v5sA-xlgd-H8a5w9FIWBPvnVtczBjcFnuZBvJyjI-mgUQwF20ZmbxyfAr10GiagMrA8JhRKvYw9ffnHiVMnybuC01IdHgCBX4BX4AqOKBWatkUSoCf4WvbmF.Hcg9KJ-f_FqEsrQCDHU2ZMYDNr1hKBOOMesXOtvNPVc pragma: - no-cache request-id: - - f0f5d9da-caa4-43be-88b6-5623c933bd1a + - 29d297ba-53a6-44d3-bc16-eb278c861d57 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -673,7 +719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:49 GMT + - Sun, 12 Mar 2023 00:35:22 GMT expires: - '-1' pragma: @@ -718,7 +764,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:50.5656992Z","updatedOn":"2023-01-23T00:13:51.0032752Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:35:23.2612560Z","updatedOn":"2023-03-12T00:35:23.6922653Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -727,7 +773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:53 GMT + - Sun, 12 Mar 2023 00:35:25 GMT expires: - '-1' pragma: @@ -775,7 +821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:53 GMT + - Sun, 12 Mar 2023 00:35:25 GMT expires: - '-1' pragma: @@ -795,7 +841,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "aafb2e5f-7616-4149-b6c4-e6559889206b"}}' + "principalId": "e6a19e20-784f-4ad8-8322-9d7409f2bc88"}}' headers: Accept: - application/json @@ -820,7 +866,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"aafb2e5f-7616-4149-b6c4-e6559889206b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T00:13:54.0978762Z","updatedOn":"2023-01-23T00:13:54.6447544Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:35:26.3393255Z","updatedOn":"2023-03-12T00:35:26.7783375Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -829,7 +875,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:56 GMT + - Sun, 12 Mar 2023 00:35:28 GMT expires: - '-1' pragma: @@ -864,18 +910,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.65194Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:08:46.65194Z"},"identity":{"principalId":"aafb2e5f-7616-4149-b6c4-e6559889206b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:19.0904692Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1038' + - '1091' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:55 GMT + - Sun, 12 Mar 2023 00:35:29 GMT etag: - - '"00001928-0000-0600-0000-63cdd1200000"' + - '"d8007110-0000-0600-0000-640d1e360000"' expires: - '-1' pragma: @@ -897,8 +943,9 @@ interactions: body: '{"sku": {"name": "Standard"}, "properties": {"publicNetworkAccess": "Enabled", "zoneRedundancy": "Disabled", "apiKey": "Enabled", "deterministicOutboundIP": "Disabled", "autoGeneratedDomainNameLabelScope": "TenantReuse", "grafanaIntegrations": - {"azureMonitorWorkspaceIntegrations": []}}, "identity": {"type": "SystemAssigned"}, - "tags": {}, "location": "westcentralus"}' + {"azureMonitorWorkspaceIntegrations": []}, "grafanaConfigurations": {"smtp": + {"enabled": false}}}, "identity": {"type": "SystemAssigned"}, "tags": {}, "location": + "westcentralus"}' headers: Accept: - application/json @@ -909,7 +956,7 @@ interactions: Connection: - keep-alive Content-Length: - - '368' + - '423' Content-Type: - application/json ParameterSetName: @@ -920,26 +967,26 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.65194Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:13:56.730846Z"},"identity":{"principalId":"aafb2e5f-7616-4149-b6c4-e6559889206b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1123' + - '1175' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:57 GMT + - Sun, 12 Mar 2023 00:35:30 GMT etag: - - '"00001d28-0000-0600-0000-63cdd1450000"' + - '"d8007410-0000-0600-0000-640d1e520000"' expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:54fcb76e-7bac-4b3e-96f8-8868676d3826 + - appId=cid-v1:c5d15200-b714-40a5-9a7a-a4ecac3e5442 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -951,7 +998,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -974,18 +1021,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-01-23T00:08:46.65194Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-23T00:13:56.730846Z"},"identity":{"principalId":"aafb2e5f-7616-4149-b6c4-e6559889206b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.2.2","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1123' + - '1175' content-type: - application/json; charset=utf-8 date: - - Mon, 23 Jan 2023 00:13:57 GMT + - Sun, 12 Mar 2023 00:35:30 GMT etag: - - '"00001d28-0000-0600-0000-63cdd1450000"' + - '"d8007410-0000-0600-0000-640d1e520000"' expires: - '-1' pragma: @@ -1029,19 +1076,22 @@ interactions: content-length: - '61' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xa/4lGbmMHZ6WeTkVoddBw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:00 GMT + - Sun, 12 Mar 2023 00:35:33 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432839.435.28.118610|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581332.746.441.25032|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1082,19 +1132,22 @@ interactions: content-length: - '117' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YJgcmahkuLvdRONTy56Dxw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:00 GMT + - Sun, 12 Mar 2023 00:35:34 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432841.674.29.778255|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581335.089.436.68301|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1133,20 +1186,23 @@ interactions: content-length: - '217' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VxlY5RpKxG6n7KbeF/X0nQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:01 GMT + - Sun, 12 Mar 2023 00:35:34 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432842.202.30.211623|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581335.898.441.824111|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1177,7 +1233,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 response: body: - string: '{"id":3,"message":"Service account updated","name":"myServiceAccount","serviceaccount":{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-01-23T00:14:00Z","updatedAt":"2023-01-23T00:14:00Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}}' + string: '{"id":3,"message":"Service account updated","name":"myServiceAccount","serviceaccount":{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-12T00:35:34Z","updatedAt":"2023-03-12T00:35:34Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}}' headers: cache-control: - no-cache @@ -1186,20 +1242,23 @@ interactions: content-length: - '325' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-z3Ba8OaqS6Q6KanWov/pVw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:01 GMT + - Sun, 12 Mar 2023 00:35:35 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432842.364.27.398096|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581336.088.442.738119|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1237,20 +1296,23 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-JD2PpQvYmawnsjf7NL7+hA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:01 GMT + - Sun, 12 Mar 2023 00:35:35 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432842.649.30.572923|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581336.453.437.528948|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1279,7 +1341,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 response: body: - string: '{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-01-23T00:14:00Z","updatedAt":"2023-01-23T00:14:01Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}' + string: '{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-12T00:35:34Z","updatedAt":"2023-03-12T00:35:35Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}' headers: cache-control: - no-cache @@ -1288,20 +1350,23 @@ interactions: content-length: - '237' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-c7vb/rJt07F4K7EPrPABug';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:02 GMT + - Sun, 12 Mar 2023 00:35:35 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432842.921.29.522200|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581336.634.441.148642|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1339,20 +1404,23 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3W/EPAZqfJcadqlof/qlgA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:02 GMT + - Sun, 12 Mar 2023 00:35:35 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.547.31.718079|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581336.918.443.280749|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1390,20 +1458,23 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x5i6za9+v1ST1JXoPF4RjQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:02 GMT + - Sun, 12 Mar 2023 00:35:36 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.814.26.948190|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581337.199.436.795493|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1434,7 +1505,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '{"id":1,"name":"myToken","key":"glsa_Qb2TB3yv4SKPwbfgqKYQMrFQ9UuLrh87_1c02a1f6"}' + string: '{"id":1,"name":"myToken","key":"glsa_FXOr2I6h7HnxvzVpcpW5PJslAswJ8rBH_b07d6101"}' headers: cache-control: - no-cache @@ -1443,20 +1514,23 @@ interactions: content-length: - '80' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xGKoR6wPrvLoT84hkYF3fg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:03 GMT + - Sun, 12 Mar 2023 00:35:36 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432843.999.27.986711|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581337.359.443.457233|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1494,20 +1568,23 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Qd3SggJtU1sQV/g95pACKg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:03 GMT + - Sun, 12 Mar 2023 00:35:37 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432844.338.28.11542|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581338.059.436.969686|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1536,7 +1613,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '[{"id":1,"name":"myToken","created":"2023-01-23T00:14:03Z","lastUsedAt":null,"expiration":"2023-01-24T00:14:03Z","secondsUntilExpiration":86399.450176644,"hasExpired":false,"isRevoked":false}]' + string: '[{"id":1,"name":"myToken","created":"2023-03-12T00:35:36Z","lastUsedAt":null,"expiration":"2023-03-13T00:35:36Z","secondsUntilExpiration":86398.735069766,"hasExpired":false,"isRevoked":false}]' headers: cache-control: - no-cache @@ -1545,20 +1622,23 @@ interactions: content-length: - '192' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bzaHbGPnOaYX5cWF67br7Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:03 GMT + - Sun, 12 Mar 2023 00:35:37 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432844.527.29.391552|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581338.246.442.325380|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1584,59 +1664,62 @@ interactions: content-type: - application/json method: GET - uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/search?type=dash-db + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"54KhiZ7nz","title":"AKS + string: '[{"id":14,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"54KhiZ7nz","title":"AKS Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":4,"uid":"dyzn5SK7z","title":"Azure + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":23,"uid":"xLERdASnz","title":"Cluster Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ohlmx07YSS3ffLzofb2QYQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:03 GMT + - Sun, 12 Mar 2023 00:35:37 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432844.79.28.884947|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581338.529.442.891856|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -1650,6 +1733,60 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + content-type: + - application/json + method: GET + uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + response: + body: + string: '[]' + headers: + cache-control: + - no-cache + connection: + - keep-alive + content-length: + - '2' + content-security-policy: + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WjYbDZgg2QzBomoJy+Zv+Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; + content-type: + - application/json + date: + - Sun, 12 Mar 2023 00:35:37 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c + set-cookie: + - INGRESSCOOKIE=1678581338.747.438.612413|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK - request: body: null headers: @@ -1676,20 +1813,23 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-A5DS2kzh8hK1CoNBiXPcdQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:04 GMT + - Sun, 12 Mar 2023 00:35:38 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432845.119.26.774199|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581339.063.442.516750|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1727,19 +1867,22 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-isABSAmkqeD3La7jAlHhfw';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:04 GMT + - Sun, 12 Mar 2023 00:35:38 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432845.296.31.848022|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581339.25.436.714110|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1769,7 +1912,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '[{"id":1,"name":"myToken","created":"2023-01-23T00:14:03Z","lastUsedAt":"2023-01-23T00:14:03Z","expiration":"2023-01-24T00:14:03Z","secondsUntilExpiration":86398.490316159,"hasExpired":false,"isRevoked":false}]' + string: '[{"id":1,"name":"myToken","created":"2023-03-12T00:35:36Z","lastUsedAt":"2023-03-12T00:35:37Z","expiration":"2023-03-13T00:35:36Z","secondsUntilExpiration":86397.543784266,"hasExpired":false,"isRevoked":false}]' headers: cache-control: - no-cache @@ -1778,20 +1921,23 @@ interactions: content-length: - '210' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1+Xb+UadL8XarXIvo2Y94w';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:04 GMT + - Sun, 12 Mar 2023 00:35:38 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432845.483.28.567690|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581339.434.441.769892|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1831,20 +1977,23 @@ interactions: content-length: - '43' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-e+YswBZ7P1CyRsLpZZuMVA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:04 GMT + - Sun, 12 Mar 2023 00:35:38 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432845.652.26.817110|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581339.614.442.701352|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1882,20 +2031,23 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-y3bgbonOgya0wOgFHJJGhA';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:04 GMT + - Sun, 12 Mar 2023 00:35:38 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432845.94.28.589214|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581339.896.435.281316|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1933,20 +2085,23 @@ interactions: content-length: - '2' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rLDYrycutsP2DWXbB/xC/Q';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:05 GMT + - Sun, 12 Mar 2023 00:35:39 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432846.124.29.241704|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581340.088.442.187447|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1984,19 +2139,22 @@ interactions: content-length: - '226' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ohyxZr9WNkadI6+cTlqaXg';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:05 GMT + - Sun, 12 Mar 2023 00:35:39 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432846.38.26.150236|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678581340.383.442.279|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2037,20 +2195,23 @@ interactions: content-length: - '37' content-security-policy: - - 'script-src: ''unsafe-eval'' ''unsafe-inline'';' + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VR3USHvx+f2XTR2QZCdsqQ';object-src + 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' + blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src + 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 23 Jan 2023 00:14:05 GMT + - Sun, 12 Mar 2023 00:35:39 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:9ec01a72-f829-441f-8754-21b0c7a10162 + - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1674432846.563.28.921864|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678581340.579.437.693061|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index c19595b70d0..b4729914ce2 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -19,7 +19,7 @@ class AmgScenarioTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_amg') - def dd_test_amg_crud(self, resource_group): + def test_amg_crud(self, resource_group): self.kwargs.update({ 'name': 'clitestamg2', @@ -64,7 +64,7 @@ def dd_test_amg_crud(self, resource_group): @ResourceGroupPreparer(name_prefix='cli_test_amg') - def dd_test_api_key_e2e(self, resource_group): + def test_api_key_e2e(self, resource_group): self.kwargs.update({ 'name': 'clitestamgapikey', @@ -93,7 +93,7 @@ def dd_test_api_key_e2e(self, resource_group): self.assertTrue(number > 0) @ResourceGroupPreparer(name_prefix='cli_test_amg') - def dd_test_service_account_e2e(self, resource_group): + def test_service_account_e2e(self, resource_group): self.kwargs.update({ 'name': 'clitestserviceaccount', @@ -134,7 +134,7 @@ def dd_test_service_account_e2e(self, resource_group): @AllowLargeResponse(size_kb=3072) @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westeurope') - def dd_test_amg_e2e(self, resource_group): + def test_amg_e2e(self, resource_group): # Test Instance self.kwargs.update({ From 9f92944ad5acf3dc676d260332c0e6fc1a127b32 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sat, 11 Mar 2023 21:31:03 -0800 Subject: [PATCH 10/19] clean up temp dir created by the test --- src/amg/azext_amg/backup.py | 5 +++ src/amg/azext_amg/restore.py | 5 +++ .../tests/latest/test_amg_scenario.py | 34 +++++++++++-------- src/amg/azext_amg/utils.py | 5 +++ 4 files changed, 34 insertions(+), 15 deletions(-) diff --git a/src/amg/azext_amg/backup.py b/src/amg/azext_amg/backup.py index 20f29ad4c59..3bd5c3b036c 100644 --- a/src/amg/azext_amg/backup.py +++ b/src/amg/azext_amg/backup.py @@ -1,3 +1,8 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + import datetime from glob import glob import json diff --git a/src/amg/azext_amg/restore.py b/src/amg/azext_amg/restore.py index c415f5ac6c4..22ae227fd2c 100644 --- a/src/amg/azext_amg/restore.py +++ b/src/amg/azext_amg/restore.py @@ -1,3 +1,8 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + import collections import json from glob import glob diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index b4729914ce2..8068c7b17df 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -292,13 +292,11 @@ def test_amg_e2e(self, resource_group): @ResourceGroupPreparer(name_prefix='cli_test_amg', location='westcentralus') def test_amg_backup_restore(self, resource_group): - temp_dir = tempfile.TemporaryDirectory().name # Test Instance self.kwargs.update({ 'name': 'clitestamg', 'location': 'westcentralus', - 'name2': 'clitestamg2', - 'tempDir': temp_dir + 'name2': 'clitestamg2' }) owner = self._get_signed_in_user() @@ -341,30 +339,36 @@ def test_amg_backup_restore(self, resource_group): 'dashboardUid': response_create["uid"], }) - self.cmd('grafana backup -g {rg} -n {name} -d "{tempDir}" --folders-to-include "{folderTitle}" --components datasources dashboards folders') + with tempfile.TemporaryDirectory() as temp_dir: + self.kwargs.update({ + 'tempDir': temp_dir + }) + self.cmd('grafana backup -g {rg} -n {name} -d "{tempDir}" --folders-to-include "{folderTitle}" --components datasources dashboards folders') - filenames = next(os.walk(temp_dir), (None, None, []))[2] - self.assertTrue(len(filenames) == 1) - self.assertTrue(filenames[0].endswith('.tar.gz')) + filenames = next(os.walk(temp_dir), (None, None, []))[2] + self.assertTrue(len(filenames) == 1) + self.assertTrue(filenames[0].endswith('.tar.gz')) - self.kwargs.update({ - 'archiveFile': os.path.join(temp_dir, filenames[0]) - }) + self.kwargs.update({ + 'archiveFile': os.path.join(temp_dir, filenames[0]) + }) - self.cmd('grafana folder delete -g {rg} -n {name} --folder "{folderTitle}"') - self.cmd('grafana data-source delete -g {rg} -n {name} --data-source "{dataSourceName}"') + self.cmd('grafana folder delete -g {rg} -n {name} --folder "{folderTitle}"') + self.cmd('grafana data-source delete -g {rg} -n {name} --data-source "{dataSourceName}"') - self.cmd('grafana restore -g {rg} -n {name} --archive-file "{archiveFile}"') + self.cmd('grafana restore -g {rg} -n {name} --archive-file "{archiveFile}"') self.cmd('grafana data-source show -g {rg} -n {name} --data-source "{dataSourceName}"') self.cmd('grafana folder show -g {rg} -n {name} --folder "{folderTitle}"') self.cmd('grafana dashboard show -g {rg} -n {name} --dashboard "{dashboardUid}"', checks=[ - self.check("[dashboard.title]", "['{dashboardTitle}']")]) + self.check("[dashboard.title]", "['{dashboardTitle}']"), + self.check("[meta.folderTitle]", "['{folderTitle}']")]) self.cmd('grafana dashboard sync --source {id} --destination {id2} --folders-to-include "{folderTitle}"') self.cmd('grafana folder show -g {rg} -n {name2} --folder "{folderTitle}"') self.cmd('grafana dashboard show -g {rg} -n {name2} --dashboard "{dashboardUid}"', checks=[ - self.check("[dashboard.title]", "['{dashboardTitle}']")]) + self.check("[dashboard.title]", "['{dashboardTitle}']"), + self.check("[meta.folderTitle]", "['{folderTitle}']")]) def _get_signed_in_user(self): diff --git a/src/amg/azext_amg/utils.py b/src/amg/azext_amg/utils.py index 7abe5d5ba6f..11e9d04aae9 100644 --- a/src/amg/azext_amg/utils.py +++ b/src/amg/azext_amg/utils.py @@ -1,3 +1,8 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + import re import json import requests From ed9c732d0d82dd339462384ac7300f8271ff69e5 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 12 Mar 2023 21:30:47 -0700 Subject: [PATCH 11/19] update all tests for wor with track 2 --- src/amg/azext_amg/azext_metadata.json | 2 +- src/amg/azext_amg/custom.py | 33 +- .../recordings/test_amg_backup_restore.yaml | 1252 ++++++++--------- .../latest/recordings/test_amg_crud.yaml | 636 +++------ .../tests/latest/recordings/test_amg_e2e.yaml | 1030 +++++++------- .../latest/recordings/test_api_key_e2e.yaml | 328 +++-- .../recordings/test_service_account_e2e.yaml | 476 +++---- .../tests/latest/test_amg_scenario.py | 2 +- .../azext_amg/vendored_sdks/_serialization.py | 24 +- 9 files changed, 1645 insertions(+), 2138 deletions(-) diff --git a/src/amg/azext_amg/azext_metadata.json b/src/amg/azext_amg/azext_metadata.json index 2928aa63a9c..777bb037c86 100644 --- a/src/amg/azext_amg/azext_metadata.json +++ b/src/amg/azext_amg/azext_metadata.json @@ -1,5 +1,5 @@ { "azext.isPreview": false, - "azext.minCliCoreVersion": "2.38.0", + "azext.minCliCoreVersion": "2.46.0", "azext.maxCliCoreVersion": "2.99.0" } \ No newline at end of file diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 460a42a7366..cd7327ea557 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -27,7 +27,7 @@ def create_grafana(cmd, resource_group_name, grafana_name, location=None, skip_system_assigned_identity=False, skip_role_assignments=False, - tags=None, zone_redundancy=None, principal_ids=None): + tags=None, zone_redundancy=None, principal_ids=None, principal_types=None): from azure.cli.core.commands.arm import resolve_role_id if skip_role_assignments and principal_ids: @@ -59,17 +59,18 @@ def create_grafana(cmd, resource_group_name, grafana_name, subscription_scope = '/subscriptions/' + client._config.subscription_id # pylint: disable=protected-access if not principal_ids: - user_principal_id = _get_login_account_principal_id(cmd.cli_ctx) + user_principal_id, user_principal_type = _get_login_account_principal_id(cmd.cli_ctx) principal_ids = [user_principal_id] + principal_types = [user_principal_type] grafana_admin_role_id = resolve_role_id(cmd.cli_ctx, "Grafana Admin", subscription_scope) - for p in principal_ids: - _create_role_assignment(cmd.cli_ctx, p, grafana_admin_role_id, resource.id) + for p, t in zip(principal_ids, principal_types): + _create_role_assignment(cmd.cli_ctx, p, t, grafana_admin_role_id, resource.id) if resource.identity: monitoring_reader_role_id = resolve_role_id(cmd.cli_ctx, "Monitoring Reader", subscription_scope) - _create_role_assignment(cmd.cli_ctx, resource.identity.principal_id, monitoring_reader_role_id, - subscription_scope) + _create_role_assignment(cmd.cli_ctx, resource.identity.principal_id, "ServicePrincipal", + monitoring_reader_role_id, subscription_scope) return resource @@ -91,10 +92,12 @@ def _get_login_account_principal_id(cli_ctx): base_url=cli_ctx.cloud.endpoints.active_directory_graph_resource_id) active_account = profile.get_subscription() assignee = active_account[_USER_ENTITY][_USER_NAME] + principal_type = "User" try: if active_account[_USER_ENTITY][_USER_TYPE] == _SERVICE_PRINCIPAL: result = list(client.service_principals.list( filter=f"servicePrincipalNames/any(c:c eq '{assignee}')")) + principal_type = "ServicePrincipal" else: result = [client.signed_in_user.get()] except GraphErrorException as ex: @@ -103,16 +106,18 @@ def _get_login_account_principal_id(cli_ctx): raise CLIInternalError((f"Failed to retrieve principal id for '{assignee}', which is needed to create a " f"role assignment. Consider using '--principal-ids' to bypass the lookup")) - return result[0].object_id + return result[0].object_id, principal_type -def _create_role_assignment(cli_ctx, principal_id, role_definition_id, scope): +def _create_role_assignment(cli_ctx, principal_id, principal_type, role_definition_id, scope): import time + from azure.core.exceptions import ResourceExistsError assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments RoleAssignmentCreateParameters = get_sdk(cli_ctx, ResourceType.MGMT_AUTHORIZATION, 'RoleAssignmentCreateParameters', mod='models', operation_group='role_assignments') - parameters = RoleAssignmentCreateParameters(role_definition_id=role_definition_id, principal_id=principal_id) + parameters = RoleAssignmentCreateParameters(role_definition_id=role_definition_id, + principal_id=principal_id, principal_type=principal_type) logger.info("Creating an assignment with a role '%s' on the scope of '%s'", role_definition_id, scope) retry_times = 36 @@ -122,11 +127,11 @@ def _create_role_assignment(cli_ctx, principal_id, role_definition_id, scope): assignments_client.create(scope=scope, role_assignment_name=assignment_name, parameters=parameters) break + except ResourceExistsError: + logger.info('Role assignment already exists') + break except CloudError as ex: - if 'role assignment already exists' in ex.message: - logger.info('Role assignment already exists') - break - if retry_time < retry_times and ' does not exist in the directory ' in ex.message: + if retry_time < retry_times and ' does not exist in the directory ' in (ex.message or "").lower(): time.sleep(5) logger.warning('Retrying role assignment creation: %s/%s', retry_time + 1, retry_times) @@ -137,7 +142,7 @@ def _create_role_assignment(cli_ctx, principal_id, role_definition_id, scope): def _delete_role_assignment(cli_ctx, principal_id): assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments f = f"principalId eq '{principal_id}'" - assignments = list(assignments_client.list(filter=f)) + assignments = list(assignments_client.list_for_subscription(filter=f)) for a in assignments or []: assignments_client.delete_by_id(a.id) diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml index 8df6bf86178..d50cd9cde82 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml @@ -18,17 +18,17 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:09:45.8739568Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:09:45.8739568Z"},"identity":{"principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:09:47 GMT + - Mon, 13 Mar 2023 04:14:46 GMT etag: - - '"d8001308-0000-0600-0000-640d184b0000"' + - '"d900c2cd-0000-0600-0000-640ea3370000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -72,12 +72,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:09:47 GMT + - Mon, 13 Mar 2023 04:15:17 GMT etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' + - '"5f006273-0000-0600-0000-640ea3370000"' expires: - '-1' pragma: @@ -118,12 +118,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:10:17 GMT + - Mon, 13 Mar 2023 04:15:47 GMT etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' + - '"5f006273-0000-0600-0000-640ea3370000"' expires: - '-1' pragma: @@ -164,12 +164,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:10:47 GMT + - Mon, 13 Mar 2023 04:16:17 GMT etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' + - '"5f006273-0000-0600-0000-640ea3370000"' expires: - '-1' pragma: @@ -210,12 +210,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:11:17 GMT + - Mon, 13 Mar 2023 04:16:47 GMT etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' + - '"5f006273-0000-0600-0000-640ea3370000"' expires: - '-1' pragma: @@ -256,12 +256,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:11:47 GMT + - Mon, 13 Mar 2023 04:17:17 GMT etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' + - '"5f006273-0000-0600-0000-640ea3370000"' expires: - '-1' pragma: @@ -302,12 +302,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:12:17 GMT + - Mon, 13 Mar 2023 04:17:48 GMT etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' + - '"5f006273-0000-0600-0000-640ea3370000"' expires: - '-1' pragma: @@ -348,12 +348,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:12:47 GMT + - Mon, 13 Mar 2023 04:18:18 GMT etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' + - '"5f006273-0000-0600-0000-640ea3370000"' expires: - '-1' pragma: @@ -394,104 +394,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' - headers: - cache-control: - - no-cache - content-length: - - '507' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 00:13:17 GMT - etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:09:47.1887846Z"}' - headers: - cache-control: - - no-cache - content-length: - - '507' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 00:13:47 GMT - etag: - - '"5f00305c-0000-0600-0000-640d184b0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","name":"5d94813b-dba1-4494-acf4-c800edaa056d*91B301DED90C750058242245BCC6A8663CCA4A023D6388632F8437F4648436A1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-12T00:09:47.1887846Z","endTime":"2023-03-12T00:14:03.0126038Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-13T04:14:47.0709591Z","endTime":"2023-03-13T04:18:41.1376349Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -500,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:18 GMT + - Mon, 13 Mar 2023 04:18:47 GMT etag: - - '"5f004b5c-0000-0600-0000-640d194b0000"' + - '"5f006f73-0000-0600-0000-640ea4210000"' expires: - '-1' pragma: @@ -532,12 +440,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:09:45.8739568Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:09:45.8739568Z"},"identity":{"principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -546,9 +454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:18 GMT + - Mon, 13 Mar 2023 04:18:48 GMT etag: - - '"d800de09-0000-0600-0000-640d194b0000"' + - '"d900cfcd-0000-0600-0000-640ea4210000"' expires: - '-1' pragma: @@ -615,19 +523,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sun, 12 Mar 2023 00:14:19 GMT + - Mon, 13 Mar 2023 04:18:49 GMT duration: - - '1707365' + - '4636852' expires: - '-1' ocp-aad-diagnostics-server-name: - - QtHkfRY3qvzCTvXrtqU2VI1Vnl7QlDUsK/8TdqSeb+g= + - rUrRS36O2GuMPZQG2mefLnbZJNQl/V+iBBmCCg7Z7kQ= ocp-aad-session-key: - - -YEjAXojj0YjpnSA_AcRcGoRpekznArW2-B07w-tIKmbwYK4RoVag_CYXQCVft0G5wRAL4-x8AfTwR8cb6c3UHZnwLrA2KiZZqJz6fCMc4kdr0Yxpx2lYUQtSnA-qq7D.EQ63LSOnQw9FU7Ax5PyH63bJXR7RG7BVDi_ecdse7hI + - buJc4sMa254AM-MjpgfgJu-2DVAVysdvWoves2Z3MbraQUnV_nqvDELhRHDjczLpceRkhuinmoQkcr7CJ8HLVmHj2h0OEsTn86wnu57HWlNLK15d1mrFC1Oyw620I-2H.8qfruvsggf3jo_7cv82E6RpWjEKcYl3d50fdFs9wnp4 pragma: - no-cache request-id: - - 8b3d4c19-4267-442b-bb3f-641878cf5a76 + - 0fc4d4bf-3a15-43fb-8926-8d6b5e2e5cee strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -655,12 +563,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in @@ -673,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:19 GMT + - Mon, 13 Mar 2023 04:18:48 GMT expires: - '-1' pragma: @@ -693,7 +599,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", - "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617", "principalType": "User"}}' headers: Accept: - application/json @@ -704,21 +610,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '258' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:14:20.3158068Z","updatedOn":"2023-03-12T00:14:20.9128107Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:18:50.0642578Z","updatedOn":"2023-03-13T04:18:50.5232674Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -727,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:23 GMT + - Mon, 13 Mar 2023 04:18:51 GMT expires: - '-1' pragma: @@ -757,12 +661,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can @@ -775,7 +677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:23 GMT + - Mon, 13 Mar 2023 04:18:51 GMT expires: - '-1' pragma: @@ -795,7 +697,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "5213235b-737c-4dfd-86c4-d5d744f75bf8"}}' + "principalId": "50850276-2ce4-403d-a307-2a242e8a9192", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -806,21 +708,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '270' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:14:23.5260163Z","updatedOn":"2023-03-12T00:14:23.9250174Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"50850276-2ce4-403d-a307-2a242e8a9192","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:18:52.6718077Z","updatedOn":"2023-03-13T04:18:53.1748155Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -829,7 +729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:25 GMT + - Mon, 13 Mar 2023 04:18:57 GMT expires: - '-1' pragma: @@ -864,17 +764,17 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:14:27.2170532Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:14:27.2170532Z"},"identity":{"principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -882,13 +782,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:29 GMT + - Mon, 13 Mar 2023 04:19:01 GMT etag: - - '"d800df09-0000-0600-0000-640d19650000"' + - '"d900d2cd-0000-0600-0000-640ea4350000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -918,12 +818,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -932,9 +832,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:29 GMT + - Mon, 13 Mar 2023 04:19:31 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -964,12 +864,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -978,9 +878,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:14:58 GMT + - Mon, 13 Mar 2023 04:20:00 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -1010,12 +910,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -1024,9 +924,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:15:29 GMT + - Mon, 13 Mar 2023 04:20:31 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -1056,12 +956,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -1070,9 +970,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:15:59 GMT + - Mon, 13 Mar 2023 04:21:01 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -1102,12 +1002,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -1116,9 +1016,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:16:29 GMT + - Mon, 13 Mar 2023 04:21:31 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -1148,12 +1048,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -1162,9 +1062,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:16:59 GMT + - Mon, 13 Mar 2023 04:22:01 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -1194,12 +1094,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -1208,9 +1108,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:17:29 GMT + - Mon, 13 Mar 2023 04:22:31 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -1240,12 +1140,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' headers: cache-control: - no-cache @@ -1254,9 +1154,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:18:00 GMT + - Mon, 13 Mar 2023 04:23:02 GMT etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' + - '"5f007073-0000-0600-0000-640ea4340000"' expires: - '-1' pragma: @@ -1286,58 +1186,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T00:14:28.7867843Z"}' - headers: - cache-control: - - no-cache - content-length: - - '508' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 00:18:29 GMT - etag: - - '"5f004c5c-0000-0600-0000-640d19640000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","name":"89aa7870-77be-4af9-bf34-a80f9b687aa6*6A3723450A6ED9652DF28B0E9F9D8DE73F96CFE237F457F94766E88F7562E253","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-12T00:14:28.7867843Z","endTime":"2023-03-12T00:18:33.3710495Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-13T04:19:00.7364282Z","endTime":"2023-03-13T04:23:13.9789874Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -1346,9 +1200,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:18:59 GMT + - Mon, 13 Mar 2023 04:23:31 GMT etag: - - '"5f00685c-0000-0600-0000-640d1a590000"' + - '"5f008173-0000-0600-0000-640ea5310000"' expires: - '-1' pragma: @@ -1378,12 +1232,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:14:27.2170532Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:14:27.2170532Z"},"identity":{"principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -1392,9 +1246,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:18:59 GMT + - Mon, 13 Mar 2023 04:23:32 GMT etag: - - '"d800ea09-0000-0600-0000-640d1a590000"' + - '"d90003d1-0000-0600-0000-640ea5310000"' expires: - '-1' pragma: @@ -1461,19 +1315,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sun, 12 Mar 2023 00:19:00 GMT + - Mon, 13 Mar 2023 04:23:32 GMT duration: - - '3692846' + - '3705994' expires: - '-1' ocp-aad-diagnostics-server-name: - - xZRngKATcZdebyzajwmERzIFaR/6HbXJsY6kh3OdNLM= + - MHAp+p4ArZovyJRyk+OHjQ7Llu34iy3pViC6SKeofc0= ocp-aad-session-key: - - I90SYuBJR8XTEK-JfofyUaXEDJRUTZylgsTMM-_Ld3RoMlXcMAwtGGtSsUultJDWrc5i4DlFRDE4wuBWFku8WXtN-PWn3iQxhMx10Onk1WPZAqSag5BYNHWbAL_MJIiV.22N85KUZenUCxHcGkKtHcW9qhR7-rq6nIp1kPAsya1U + - GPflBmDx3JZusnb9bWesxIhia8FxUiVAQWsvlM6e7DcH3wowmG1DaH_KxuLf4MNngHnG5IdWXOE6kdVGj__gFtTAxvKB1mpt9DhZLGMCS8-W4knKkxWqN-TXaezySepn.qV2JzqI-pd8oT-3uVQvMS_kDODEvZL1r1uUg2lfNzD0 pragma: - no-cache request-id: - - 3d723092-2ffd-4744-96fb-71d5635f0428 + - d33dfb20-75ae-4dca-a89d-dd1c765e6a5a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1501,12 +1355,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in @@ -1519,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:19:00 GMT + - Mon, 13 Mar 2023 04:23:33 GMT expires: - '-1' pragma: @@ -1539,7 +1391,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", - "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617", "principalType": "User"}}' headers: Accept: - application/json @@ -1550,21 +1402,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '258' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:19:01.8145699Z","updatedOn":"2023-03-12T00:19:02.2775829Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:23:34.0152556Z","updatedOn":"2023-03-13T04:23:34.4712797Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' headers: cache-control: - no-cache @@ -1573,7 +1423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:19:03 GMT + - Mon, 13 Mar 2023 04:23:37 GMT expires: - '-1' pragma: @@ -1603,12 +1453,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can @@ -1621,7 +1469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:19:03 GMT + - Mon, 13 Mar 2023 04:23:37 GMT expires: - '-1' pragma: @@ -1641,7 +1489,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "e284654f-94cd-4bb6-8c62-0e5e546ae413"}}' + "principalId": "71a21bc6-d034-439d-bc14-a5b9eca04814", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -1652,21 +1500,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '270' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:19:04.2373191Z","updatedOn":"2023-03-12T00:19:04.6603213Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:23:37.5878607Z","updatedOn":"2023-03-13T04:23:38.0178672Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' headers: cache-control: - no-cache @@ -1675,7 +1521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:19:05 GMT + - Mon, 13 Mar 2023 04:23:39 GMT expires: - '-1' pragma: @@ -1705,12 +1551,12 @@ interactions: ParameterSetName: - -g -n --title User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:09:45.8739568Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:09:45.8739568Z"},"identity":{"principalId":"5213235b-737c-4dfd-86c4-d5d744f75bf8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -1719,9 +1565,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:19:21 GMT + - Mon, 13 Mar 2023 04:25:39 GMT etag: - - '"d800de09-0000-0600-0000-640d194b0000"' + - '"d900cfcd-0000-0600-0000-640ea4210000"' expires: - '-1' pragma: @@ -1758,7 +1604,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":26,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:25.170148727Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:25.170148927Z","version":1,"parentUid":""}' + string: '{"id":25,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:43.008518979Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:43.008519079Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -1767,14 +1613,14 @@ interactions: content-length: - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CMC0ebWANrDh5BexdKRtzw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fNFtyleMRQLbaeBBzZlxRA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:25 GMT + - Mon, 13 Mar 2023 04:25:43 GMT expires: - '-1' pragma: @@ -1782,7 +1628,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580364.095.440.323970|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681541.891.437.332621|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1815,7 +1661,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":3,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -1826,14 +1672,14 @@ interactions: content-length: - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5QXUgpkeQ1HFaqtUoi2e3A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7PXqG5bbG0Ska1kaiUrGjw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:25 GMT + - Mon, 13 Mar 2023 04:25:43 GMT expires: - '-1' pragma: @@ -1841,7 +1687,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580366.488.441.275677|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681544.297.441.247174|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1871,7 +1717,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"77a787207c3e7b8c6466ef992d196caa"}' + string: '{"message":"id is invalid","traceID":"17cfd18f1b16d23fa21cfa7e06091904"}' headers: cache-control: - no-cache @@ -1880,14 +1726,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jSjL82+8hZDBpnV5A1m7+w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-qX7pl7/cq6xN4XQ6FYhNTg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:26 GMT + - Mon, 13 Mar 2023 04:25:44 GMT expires: - '-1' pragma: @@ -1895,7 +1741,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580367.065.440.861544|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681544.614.442.840404|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1934,14 +1780,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TQ4LVj/qiVulg/MymQNX6Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EhOu6su0CE/LM13g8LlrNQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:26 GMT + - Mon, 13 Mar 2023 04:25:44 GMT expires: - '-1' pragma: @@ -1949,8 +1795,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580367.24.436.411587|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681545.205.436.580845|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1979,7 +1825,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":26,"uid":"0XPIK5-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"3OpsFo-Vk","title":"Test Folder"}]' headers: cache-control: @@ -1989,14 +1835,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AsA1hoGFJv6LshXdxfQ4/g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pDAjDRi2/epSEAxbTdP4PA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:26 GMT + - Mon, 13 Mar 2023 04:25:44 GMT expires: - '-1' pragma: @@ -2004,7 +1850,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580367.453.440.485432|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681545.383.442.146402|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2018,7 +1864,7 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard"}, "folderId": 26, "overwrite": + body: '{"dashboard": {"title": "Test Dashboard"}, "folderId": 25, "overwrite": false}' headers: Accept: @@ -2037,7 +1883,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":27,"slug":"test-dashboard","status":"success","uid":"adUIF5aVz","url":"/d/adUIF5aVz/test-dashboard","version":1}' + string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"y92yFT-Vz","url":"/d/y92yFT-Vz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -2046,14 +1892,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VTWQUnoQedWab/eYE6nYRA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-UyuPXyVt8D6dB3UYkyrrMw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:26 GMT + - Mon, 13 Mar 2023 04:25:44 GMT expires: - '-1' pragma: @@ -2061,7 +1907,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580367.646.440.922734|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681545.575.441.533111|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2093,7 +1939,7 @@ interactions: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"hhsIK5aVk","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -2104,14 +1950,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dl2Z7tG5QhzweczxLWM9fA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aJrKrUmA7d2Fc8aJmZB6cw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:27 GMT + - Mon, 13 Mar 2023 04:25:45 GMT expires: - '-1' pragma: @@ -2119,8 +1965,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580367.98.437.279404|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681545.859.437.252193|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2149,52 +1995,52 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":14,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":4,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":17,"uid":"xLERdASnz","title":"Cluster + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"sVKyjvpnz","title":"Incoming + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"6naEwcp7z","title":"Outgoing + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"adUIF5aVz","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/adUIF5aVz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":26,"folderUid":"0XPIK5-4k","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","sortMeta":0},{"id":23,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"y92yFT-Vz","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":25,"folderUid":"3OpsFo-Vk","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-QXQh/UgahuuG2ilNEO41sA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nXShY/GAnxpGlRCgpVzjPQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:27 GMT + - Mon, 13 Mar 2023 04:25:45 GMT expires: - '-1' pragma: @@ -2202,7 +2048,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580368.161.439.39610|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681546.83.442.800892|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2231,12 +2077,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:26Z","updated":"2023-03-12T00:19:26Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"0XPIK5-4k","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test - Dashboard","uid":"adUIF5aVz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:44Z","updated":"2023-03-13T04:25:44Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":25,"folderUid":"3OpsFo-Vk","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":26,"title":"Test + Dashboard","uid":"y92yFT-Vz","version":1}}' headers: cache-control: - no-cache @@ -2245,14 +2091,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FbVhcGqNoY84VnKtB1XFEw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3qfXAuzZfUfJnKUkTSfmEw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:27 GMT + - Mon, 13 Mar 2023 04:25:46 GMT expires: - '-1' pragma: @@ -2260,7 +2106,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580368.336.441.545101|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681546.998.441.960347|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2299,14 +2145,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-4vag+u7Zoiba4z9wtcSOpA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WCclOFR878Ch+4vf+CIIPQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:27 GMT + - Mon, 13 Mar 2023 04:25:46 GMT expires: - '-1' pragma: @@ -2314,7 +2160,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580368.557.438.158021|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681547.166.435.184108|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2344,8 +2190,8 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-folder response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor","uri":"db/azure-monitor","url":"/dashboards/f/az-mon/azure-monitor","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":13,"uid":"geneva","title":"Geneva","uri":"db/geneva","url":"/dashboards/f/geneva/geneva","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":26,"uid":"0XPIK5-4k","title":"Test - Folder","uri":"db/test-folder","url":"/dashboards/f/0XPIK5-4k/test-folder","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor","uri":"db/azure-monitor","url":"/dashboards/f/az-mon/azure-monitor","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":13,"uid":"geneva","title":"Geneva","uri":"db/geneva","url":"/dashboards/f/geneva/geneva","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":25,"uid":"3OpsFo-Vk","title":"Test + Folder","uri":"db/test-folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0}]' headers: cache-control: - no-cache @@ -2354,14 +2200,14 @@ interactions: content-length: - '546' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-wigqMP/H6PtadRDRvKkG2w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ft9yTg3e39o5wi4cTn/jNA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:27 GMT + - Mon, 13 Mar 2023 04:25:46 GMT expires: - '-1' pragma: @@ -2369,7 +2215,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580368.765.440.734731|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681547.335.442.284424|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2396,10 +2242,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk response: body: - string: '{"id":26,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:25Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:25Z","version":1,"parentUid":""}' + string: '{"id":25,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:43Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:43Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -2408,14 +2254,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nGK0KPUEwFciwFgyBh5leA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-82nporEnSjfxnflCrUFfCQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:27 GMT + - Mon, 13 Mar 2023 04:25:46 GMT expires: - '-1' pragma: @@ -2423,7 +2269,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580368.968.440.623988|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681547.507.443.746311|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2450,12 +2296,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k/permissions + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk/permissions response: body: - string: '[{"folderId":26,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Viewer","permission":1,"permissionName":"View","uid":"0XPIK5-4k","title":"Test - Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/0XPIK5-4k/test-folder","inherited":false},{"folderId":26,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Editor","permission":2,"permissionName":"Edit","uid":"0XPIK5-4k","title":"Test - Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/0XPIK5-4k/test-folder","inherited":false}]' + string: '[{"folderId":25,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Viewer","permission":1,"permissionName":"View","uid":"3OpsFo-Vk","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/3OpsFo-Vk/test-folder","inherited":false},{"folderId":25,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Editor","permission":2,"permissionName":"Edit","uid":"3OpsFo-Vk","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/3OpsFo-Vk/test-folder","inherited":false}]' headers: cache-control: - no-cache @@ -2464,14 +2310,14 @@ interactions: content-length: - '783' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/UjGLZoDK7Dxzvnp9FqHuA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OUiRI0T2e0S2Ka8v2yzDYg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:28 GMT + - Mon, 13 Mar 2023 04:25:46 GMT expires: - '-1' pragma: @@ -2479,7 +2325,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580369.135.437.536712|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681547.668.438.847692|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2509,7 +2355,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"659174b56051527d0f3a01318ca3f859"}' + string: '{"message":"id is invalid","traceID":"072fc4c2b09c9f2eff445fe9e607b7e0"}' headers: cache-control: - no-cache @@ -2518,14 +2364,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ntCAAfs1ax4fB4sHlZ0bMQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PQBYTwLRtGK7FSmuweDVgA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:28 GMT + - Mon, 13 Mar 2023 04:25:47 GMT expires: - '-1' pragma: @@ -2533,7 +2379,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580369.596.442.91710|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681548.02.442.634032|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2572,14 +2418,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Fj2rQr79Z+piZMg56KKl5A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iVSmwlc6+3EjGRQjeJAPhA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:29 GMT + - Mon, 13 Mar 2023 04:25:47 GMT expires: - '-1' pragma: @@ -2587,7 +2433,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580369.845.441.541688|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681548.202.435.231671|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2617,7 +2463,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":26,"uid":"0XPIK5-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"3OpsFo-Vk","title":"Test Folder"}]' headers: cache-control: @@ -2627,14 +2473,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SERe8R4UbAVy6WBH7cJ6hA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vmu8t+YkPZAcn089p2WS2A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:29 GMT + - Mon, 13 Mar 2023 04:25:47 GMT expires: - '-1' pragma: @@ -2642,7 +2488,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580370.346.437.317383|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681548.445.439.366552|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2671,7 +2517,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk response: body: string: '' @@ -2683,14 +2529,14 @@ interactions: content-length: - '0' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-p+FFuiu8VQ11XDrlAt6mkw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GfZYmda/tsSbC14Wd5gDcw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:29 GMT + - Mon, 13 Mar 2023 04:25:47 GMT expires: - '-1' pragma: @@ -2698,7 +2544,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580370.5.440.119003|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681548.652.441.62870|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2728,7 +2574,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2738,14 +2584,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TueKgmbAsMI5WecqsvvV3A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jZrqSxZnpqQ/b854mAGvjA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:29 GMT + - Mon, 13 Mar 2023 04:25:48 GMT expires: - '-1' pragma: @@ -2753,7 +2599,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580370.877.443.284680|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681549.134.440.270292|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2782,7 +2628,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/uid/hhsIK5aVk + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/uid/7LpyKTaVk response: body: string: '{"id":3,"message":"Data source deleted"}' @@ -2794,14 +2640,14 @@ interactions: content-length: - '40' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TXrfg6kybcIzw676D0Dn0w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VbeHuJ42mH+/vQIvwEdMpw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:30 GMT + - Mon, 13 Mar 2023 04:25:48 GMT expires: - '-1' pragma: @@ -2809,7 +2655,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580371.059.438.926556|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681549.306.440.861914|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2823,10 +2669,10 @@ interactions: code: 200 message: OK - request: - body: '{"id": 26, "uid": "0XPIK5-4k", "title": "Test Folder", "url": "/dashboards/f/0XPIK5-4k/test-folder", + body: '{"id": 25, "uid": "3OpsFo-Vk", "title": "Test Folder", "url": "/dashboards/f/3OpsFo-Vk/test-folder", "hasAcl": false, "canSave": true, "canEdit": true, "canAdmin": true, "canDelete": - true, "createdBy": "example@example.com", "created": "2023-03-12T00:19:25Z", - "updatedBy": "example@example.com", "updated": "2023-03-12T00:19:25Z", "version": + true, "createdBy": "example@example.com", "created": "2023-03-13T04:25:43Z", + "updatedBy": "example@example.com", "updated": "2023-03-13T04:25:43Z", "version": 1, "parentUid": ""}' headers: Accept: @@ -2845,7 +2691,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":28,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:30.391850138Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:30.391850238Z","version":1,"parentUid":""}' + string: '{"id":27,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:48.630069129Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:48.630069129Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -2854,14 +2700,14 @@ interactions: content-length: - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x9KniboExn1CVNVR8AfGvQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-N7nkf3UHcIy7cbsHDq5ljA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:30 GMT + - Mon, 13 Mar 2023 04:25:48 GMT expires: - '-1' pragma: @@ -2869,7 +2715,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580371.368.441.445909|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681549.606.438.484543|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2896,10 +2742,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/0XPIK5-4k + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk response: body: - string: '{"id":28,"uid":"0XPIK5-4k","title":"Test Folder","url":"/dashboards/f/0XPIK5-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:30Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:30Z","version":1,"parentUid":""}' + string: '{"id":27,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:48Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:48Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -2908,14 +2754,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-biedxcSetTuQRRvb/yuYfQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+6XHLteA7cvtJKpCelRl1Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:30 GMT + - Mon, 13 Mar 2023 04:25:48 GMT expires: - '-1' pragma: @@ -2923,8 +2769,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580371.56.442.201572|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681549.794.441.622740|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2937,8 +2783,8 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"id": null, "title": "Test Dashboard", "uid": "adUIF5aVz", - "version": 1}, "folderId": 28, "overwrite": true}' + body: '{"dashboard": {"id": null, "title": "Test Dashboard", "uid": "y92yFT-Vz", + "version": 1}, "folderId": 27, "overwrite": true}' headers: Accept: - '*/*' @@ -2956,7 +2802,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":29,"slug":"test-dashboard","status":"success","uid":"adUIF5aVz","url":"/d/adUIF5aVz/test-dashboard","version":1}' + string: '{"id":28,"slug":"test-dashboard","status":"success","uid":"y92yFT-Vz","url":"/d/y92yFT-Vz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -2965,14 +2811,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MErbTckUgfnWaWNlcQQihA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2jwBoDR7NQIQNlJe6eehrQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:30 GMT + - Mon, 13 Mar 2023 04:25:49 GMT expires: - '-1' pragma: @@ -2980,7 +2826,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580371.743.438.184143|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681549.965.441.628005|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2994,11 +2840,11 @@ interactions: code: 200 message: OK - request: - body: '{"id": 1, "uid": "azure-monitor-oob", "orgId": 1, "name": "Azure Monitor", - "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", "typeLogoUrl": - "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", + body: '{"id": 3, "uid": "7LpyKTaVk", "orgId": 1, "name": "Test Azure Monitor Data + Source", "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", + "typeLogoUrl": "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, - "isDefault": false, "jsonData": {"azureAuthType": "msi", "subscriptionId": "2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"}, + "isDefault": false, "jsonData": {"azureAuthType": "msi", "subscriptionId": ""}, "readOnly": false}' headers: Accept: @@ -3008,7 +2854,7 @@ interactions: Connection: - keep-alive Content-Length: - - '454' + - '427' User-Agent: - python-requests/2.26.0 content-type: @@ -3017,23 +2863,25 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '{"message":"data source with the same name already exists","traceID":"3f9a7f48671c68d11753d1fd8393db45"}' + string: '{"datasource":{"id":4,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure + Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource + added","name":"Test Azure Monitor Data Source"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '104' + - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MjIIp9j+msj5zLCQXfUWRw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8CGJk/V4EIz7lD0SUTKE5A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:30 GMT + - Mon, 13 Mar 2023 04:25:49 GMT expires: - '-1' pragma: @@ -3041,7 +2889,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580371.936.440.772980|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681550.175.437.718005|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3052,14 +2900,15 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 409 - message: Conflict + code: 200 + message: OK - request: - body: '{"id": 2, "uid": "Geneva", "orgId": 1, "name": "Geneva Datasource", "type": - "geneva-datasource", "typeName": "Geneva Datasource", "typeLogoUrl": "public/plugins/geneva-datasource/img/logo.svg", + body: '{"id": 1, "uid": "azure-monitor-oob", "orgId": 1, "name": "Azure Monitor", + "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", "typeLogoUrl": + "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, - "isDefault": false, "jsonData": {"azureCredentials": {"authType": "msi"}}, "readOnly": - false}' + "isDefault": false, "jsonData": {"azureAuthType": "msi", "subscriptionId": "2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"}, + "readOnly": false}' headers: Accept: - '*/*' @@ -3068,7 +2917,7 @@ interactions: Connection: - keep-alive Content-Length: - - '365' + - '454' User-Agent: - python-requests/2.26.0 content-type: @@ -3077,7 +2926,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '{"message":"data source with the same name already exists","traceID":"8613b0107bb3cd53c5cf3277af1e2706"}' + string: '{"message":"data source with the same name already exists","traceID":"0cbe7c104e3b15d07e247cd768af6d51"}' headers: cache-control: - no-cache @@ -3086,14 +2935,14 @@ interactions: content-length: - '104' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WdAUhWhmeAoZodZNw346gQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-uRdfWFrxnweion+uA3vamg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:31 GMT + - Mon, 13 Mar 2023 04:25:49 GMT expires: - '-1' pragma: @@ -3101,7 +2950,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580372.106.440.537547|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681550.397.442.527756|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3115,12 +2964,11 @@ interactions: code: 409 message: Conflict - request: - body: '{"id": 3, "uid": "hhsIK5aVk", "orgId": 1, "name": "Test Azure Monitor Data - Source", "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", - "typeLogoUrl": "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", + body: '{"id": 2, "uid": "Geneva", "orgId": 1, "name": "Geneva Datasource", "type": + "geneva-datasource", "typeName": "Geneva Datasource", "typeLogoUrl": "public/plugins/geneva-datasource/img/logo.svg", "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, - "isDefault": false, "jsonData": {"azureAuthType": "msi", "subscriptionId": ""}, - "readOnly": false}' + "isDefault": false, "jsonData": {"azureCredentials": {"authType": "msi"}}, "readOnly": + false}' headers: Accept: - '*/*' @@ -3129,7 +2977,7 @@ interactions: Connection: - keep-alive Content-Length: - - '427' + - '365' User-Agent: - python-requests/2.26.0 content-type: @@ -3138,25 +2986,23 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":4,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure - Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource - added","name":"Test Azure Monitor Data Source"}' + string: '{"message":"data source with the same name already exists","traceID":"114568390278d84549320b54f0bdccdd"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '461' + - '104' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-D9IHkhwWRRWNowxDTU4ScA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nOQbNQBSlqW7cXROrJKdew';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:31 GMT + - Mon, 13 Mar 2023 04:25:49 GMT expires: - '-1' pragma: @@ -3164,7 +3010,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580372.287.438.463691|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681550.565.443.438793|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3175,8 +3021,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK + code: 409 + message: Conflict - request: body: null headers: @@ -3194,7 +3040,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"hhsIK5aVk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -3204,14 +3050,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-j3+plhdeYAvhLTT3LI2CtA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-oIMDU/TCcMUFOaj1GNJvSA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:31 GMT + - Mon, 13 Mar 2023 04:25:49 GMT expires: - '-1' pragma: @@ -3219,8 +3065,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580372.632.441.443922|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678681550.849.441.22319|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3249,7 +3095,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"d5b4c8539e3cf1bf551142b2c5bb4794"}' + string: '{"message":"id is invalid","traceID":"30a9ef3764f21852954159ce89bde4f0"}' headers: cache-control: - no-cache @@ -3258,14 +3104,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bVpL+sXHcgaNFxRsBWrn1A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jk6geE4Ir8iPbrpmgT5afw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:31 GMT + - Mon, 13 Mar 2023 04:25:50 GMT expires: - '-1' pragma: @@ -3273,7 +3119,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580372.914.440.518011|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681551.128.441.983478|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3312,14 +3158,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XmJ29TCbtVTmlhNY+0/rlg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vGjx0eCpOjLm+wNUCti9Nw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:32 GMT + - Mon, 13 Mar 2023 04:25:50 GMT expires: - '-1' pragma: @@ -3327,7 +3173,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580373.097.437.18480|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681551.302.438.9607|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3357,7 +3203,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":28,"uid":"0XPIK5-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":27,"uid":"3OpsFo-Vk","title":"Test Folder"}]' headers: cache-control: @@ -3367,14 +3213,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hbpQPKPzkS9OyGEbUqAspw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lvkjoxAu2KiCWytwEwYZKQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:32 GMT + - Mon, 13 Mar 2023 04:25:50 GMT expires: - '-1' pragma: @@ -3382,7 +3228,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580373.279.441.994744|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681551.494.441.774350|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3409,12 +3255,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:30Z","updated":"2023-03-12T00:19:30Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":28,"folderUid":"0XPIK5-4k","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":29,"title":"Test - Dashboard","uid":"adUIF5aVz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:49Z","updated":"2023-03-13T04:25:49Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":27,"folderUid":"3OpsFo-Vk","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":28,"title":"Test + Dashboard","uid":"y92yFT-Vz","version":1}}' headers: cache-control: - no-cache @@ -3423,14 +3269,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F8PE3YcDN3Bu4uAqjyua+A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LCuSRdnkyFljv4FzVM0TtQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:32 GMT + - Mon, 13 Mar 2023 04:25:50 GMT expires: - '-1' pragma: @@ -3438,7 +3284,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580373.567.438.536368|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681551.792.443.543668|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3465,12 +3311,12 @@ interactions: ParameterSetName: - --source --destination --folders-to-include User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:14:27.2170532Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:14:27.2170532Z"},"identity":{"principalId":"e284654f-94cd-4bb6-8c62-0e5e546ae413","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -3479,9 +3325,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:19:33 GMT + - Mon, 13 Mar 2023 04:25:50 GMT etag: - - '"d800ea09-0000-0600-0000-640d1a590000"' + - '"d90003d1-0000-0600-0000-640ea5310000"' expires: - '-1' pragma: @@ -3525,14 +3371,14 @@ interactions: content-length: - '91' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bLs5n5CVpvA3RstNJjRsnw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-78Vy/O7WVSgkUuBU0boy2Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:35 GMT + - Mon, 13 Mar 2023 04:25:52 GMT expires: - '-1' pragma: @@ -3540,7 +3386,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580374.412.442.863798|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681552.654.442.209469|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3581,14 +3427,14 @@ interactions: content-length: - '759' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ezdnCyi+NKYiL9hHiEMRfw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FghiwSJJpO6oIZKmjTYgNA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:35 GMT + - Mon, 13 Mar 2023 04:25:53 GMT expires: - '-1' pragma: @@ -3596,7 +3442,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580376.225.435.815621|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681554.164.442.327717|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3628,7 +3474,7 @@ interactions: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"hhsIK5aVk","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -3639,14 +3485,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TqR+HCvm1Z+WwGVAwd4zUg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-a+/MQgAT3sTo3WqPPPi6Jw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:35 GMT + - Mon, 13 Mar 2023 04:25:53 GMT expires: - '-1' pragma: @@ -3654,7 +3500,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580376.459.440.134158|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681554.363.435.426155|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3684,52 +3530,52 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":14,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":4,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":17,"uid":"xLERdASnz","title":"Cluster + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"sVKyjvpnz","title":"Incoming + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"6naEwcp7z","title":"Outgoing + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":29,"uid":"adUIF5aVz","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/adUIF5aVz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":28,"folderUid":"0XPIK5-4k","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","sortMeta":0},{"id":23,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":28,"uid":"y92yFT-Vz","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":27,"folderUid":"3OpsFo-Vk","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-puVnjJDvRMCaI8QTIv6stw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GXO1p1G9A+PeH2wBzt2qWQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:35 GMT + - Mon, 13 Mar 2023 04:25:53 GMT expires: - '-1' pragma: @@ -3737,7 +3583,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580376.65.436.731201|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681554.55.440.785977|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3778,14 +3624,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-re9CIIRCxysNwVxP3Nq6Hw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/xY3+Z5SsKbCvo0cx0Wryw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:35 GMT + - Mon, 13 Mar 2023 04:25:53 GMT expires: - '-1' pragma: @@ -3793,8 +3639,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580376.862.439.968329|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678681554.742.441.27126|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3823,9 +3669,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/OSBzdgnnz response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"agent-qos\",\"url\":\"/d/OSBzdgnnz/agent-qos\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:34Z\",\"updated\":\"2023-03-12T00:13:34Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"agentQoS.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"agent-qos\",\"url\":\"/d/OSBzdgnnz/agent-qos\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:25Z\",\"updated\":\"2023-03-13T04:18:25Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"agentQoS.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, - 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"type\":\"dashboard\"}]},\"description\":\"\",\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":14,\"links\":[],\"panels\":[{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"options\":{\"content\":\"\\u003cdiv + 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"type\":\"dashboard\"}]},\"description\":\"\",\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":23,\"links\":[],\"panels\":[{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"options\":{\"content\":\"\\u003cdiv style=\\\"padding: 1em\\\"\\u003e\\n \\u003cp\\u003eThis dashboard helps understand and diagnose monitoring agent health. It gives an overview of:\\u003cbr\\u003e\\u003c/p\\u003e\\n \ \\u003cul\\u003e\\n \\u003cli\\u003eData Quality (Data loss and latency @@ -3962,14 +3808,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-918u4DNValVPk8FoFu6SIA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rK/BHmT+g0GX5l2N7RjYPg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:36 GMT + - Mon, 13 Mar 2023 04:25:53 GMT expires: - '-1' pragma: @@ -3977,7 +3823,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580377.047.440.635105|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681554.913.437.255284|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4009,9 +3855,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/54KhiZ7nz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AKSLinuxSample.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AKSLinuxSample.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":18,"links":[],"liveNow":false,"panels":[{"datasource":null,"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":6,"options":{"content":"This + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":17,"links":[],"liveNow":false,"panels":[{"datasource":null,"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":6,"options":{"content":"This dashboard shows telemetry from the machine running the AKSGenevaSample Application.\n\u003cbr\u003e\nThe dashboard will contain data only if your service (AKSGenevaSample) is running and the Geneva Agent is set up correctly.\n\u003cbr\u003e\nTo set up a sample @@ -4027,21 +3873,21 @@ interactions: Success\").samplingTypes(\"Count\").resolution(1m)","refId":"SuccessQuery","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true},{"account":"","backends":[],"customSeriesNaming":"Failure","dimension":"","environment":"prod","groupByUnit":"m","groupByValue":"1","healthQueryType":"Topology","hide":false,"metric":"","metricsQueryType":"query","namespace":"","queryText":"metric(\"Boot Failure\").samplingTypes(\"Count\").resolution(1m)","refId":"FailureQuery","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Average Count of Boot Failures vs Success","type":"timeseries"}],"refresh":"","schemaVersion":31,"style":"dark","tags":[],"templating":{"list":[]},"time":{"from":"now-30m","to":"now"},"timepicker":{},"timezone":"","title":"AKS - Linux Sample Application","uid":"54KhiZ7nz","version":2}}' + Linux Sample Application","uid":"54KhiZ7nz","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-JScdhn4vvmQOUBOs2iM/Ug';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8t9hsxlVN4X/sZtXmnzIWg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:36 GMT + - Mon, 13 Mar 2023 04:25:54 GMT expires: - '-1' pragma: @@ -4049,7 +3895,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580377.267.438.679387|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681555.136.441.730221|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4081,9 +3927,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6uRDjTNnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"app-detail","url":"/d/6uRDjTNnz/app-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AppDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"app-detail","url":"/d/6uRDjTNnz/app-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AppDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":15,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":18,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster and an application, this widget shows it''s health timeline - time when the application sent Ok, Warning and Error as it''s health status","fieldConfig":{"defaults":{"color":{"mode":"continuous-GrYlRd"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":0,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]}]},"gridPos":{"h":15,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"customSeriesNaming":"{HealthState} @@ -4110,21 +3956,21 @@ interactions: AppName)","description":"Application name in the cluster","error":null,"hide":0,"includeAll":false,"label":"App Name","multi":true,"name":"AppName","options":[],"query":"dimensionValues($account, ServiceFabric, AppHealthState, AppName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"App - Detail","uid":"6uRDjTNnz","version":2}}' + Detail","uid":"6uRDjTNnz","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kDh3kbWOuMtFR6Y99TV2ig';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-//20aiWJDubxtyon9FVUnw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:36 GMT + - Mon, 13 Mar 2023 04:25:54 GMT expires: - '-1' pragma: @@ -4132,7 +3978,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580377.463.440.234598|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681555.326.443.357136|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4164,10 +4010,10 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/dyzn5SK7z response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-alert-consumption\",\"url\":\"/d/dyzn5SK7z/azure-alert-consumption\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:34Z\",\"updated\":\"2023-03-02T01:06:43Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":2,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-alert-consumption\",\"url\":\"/d/dyzn5SK7z/azure-alert-consumption\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:24Z\",\"updated\":\"2023-03-13T04:18:24Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"v1Alerts.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__elements\":[],\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"8.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"A - summary of all alerts for the subscription and other filters selected\",\"editable\":true,\"id\":12,\"links\":[],\"liveNow\":false,\"panels\":[{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Total + summary of all alerts for the subscription and other filters selected\",\"editable\":true,\"id\":4,\"links\":[],\"liveNow\":false,\"panels\":[{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Total Alerts\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev0\\u0026var-sev=Sev1\\u0026var-sev=Sev2\\u0026var-sev=Sev3\\u0026var-sev=Sev4\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":0,\"y\":0},\"id\":4,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) @@ -4241,21 +4087,21 @@ interactions: Response\",\"multi\":true,\"name\":\"as\",\"options\":[{\"selected\":true,\"text\":\"New\",\"value\":\"New\"},{\"selected\":true,\"text\":\"Acknowledged\",\"value\":\"Acknowledged\"},{\"selected\":true,\"text\":\"Closed\",\"value\":\"Closed\"}],\"query\":\"New, Acknowledged, Closed\",\"queryValue\":\"\",\"skipUrlSync\":false,\"type\":\"custom\"},{\"current\":{\"selected\":false,\"text\":[\"Critical\",\"Error\",\"Warning\",\"Informational\",\"Verbose\"],\"value\":[\"Sev0\",\"Sev1\",\"Sev2\",\"Sev3\",\"Sev4\"]},\"hide\":0,\"includeAll\":false,\"label\":\"Severity\",\"multi\":true,\"name\":\"sev\",\"options\":[{\"selected\":true,\"text\":\"Critical\",\"value\":\"Sev0\"},{\"selected\":true,\"text\":\"Error\",\"value\":\"Sev1\"},{\"selected\":true,\"text\":\"Warning\",\"value\":\"Sev2\"},{\"selected\":true,\"text\":\"Informational\",\"value\":\"Sev3\"},{\"selected\":true,\"text\":\"Verbose\",\"value\":\"Sev4\"}],\"query\":\"Critical : Sev0, Error : Sev1, Warning : Sev2, Informational : Sev3, Verbose : Sev4\",\"queryValue\":\"\",\"skipUrlSync\":false,\"type\":\"custom\"}]},\"time\":{\"from\":\"now-30d\",\"to\":\"now\"},\"timepicker\":{\"hidden\":false,\"refresh_intervals\":[\"30m\",\"1h\",\"12h\",\"24h\",\"3d\",\"7d\",\"30d\"]},\"title\":\"Azure - / Alert Consumption\",\"uid\":\"dyzn5SK7z\",\"version\":2}}" + / Alert Consumption\",\"uid\":\"dyzn5SK7z\",\"version\":1}}" headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3RoN3BEyJ78WDuqTBLT14w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-0DaLSDQjp+OmTyOwal4+6w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:36 GMT + - Mon, 13 Mar 2023 04:25:54 GMT expires: - '-1' pragma: @@ -4263,8 +4109,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580377.65.443.424121|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681555.509.439.900706|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4295,7 +4141,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Yo38mcvnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsights.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"The dashboard provides @@ -4431,21 +4277,21 @@ interactions: $rg, $ns)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"resources\n| project tenantId","hide":2,"includeAll":false,"label":"tenantId","multi":false,"name":"tenant","options":[],"query":{"azureLogAnalytics":{"query":"","resource":""},"azureResourceGraph":{"query":"Resources\r\n|project tenantId"},"queryType":"Azure Resource Graph","refId":"A","subscriptions":["$sub"]},"refresh":1,"regex":"","skipUrlSync":false,"sort":5,"type":"query"}]},"time":{"from":"now-30m","to":"now"},"title":"Azure - / Insights / Applications","uid":"Yo38mcvnz","version":2}}' + / Insights / Applications","uid":"Yo38mcvnz","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-I2nTGU6QMkvOwf7OKA+tRg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-j2oLbBXsYKtkTfETuQX1kw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:36 GMT + - Mon, 13 Mar 2023 04:25:54 GMT expires: - '-1' pragma: @@ -4453,8 +4299,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580377.857.442.94651|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681555.734.442.937514|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4485,10 +4331,10 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AppInsightsAvTestGeoMap response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsightsGeoMap.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"geomap","name":"Geomap","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"timeseries","name":"Time - series","type":"panel","version":""}],"editable":true,"id":2,"iteration":null,"liveNow":false,"panels":[{"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":18,"options":{"content":"\u003cdiv + series","type":"panel","version":""}],"editable":true,"id":11,"iteration":null,"liveNow":false,"panels":[{"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":18,"options":{"content":"\u003cdiv style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003e This dashboard helps you visualize data on availability tests for your Application Insights. Note that even if you have an App Insights resource configured, if you have @@ -4641,14 +4487,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1Qv3vF8FQATPMl6BxGRpLA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Bq53xV1469bzQary7S2bZg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:37 GMT + - Mon, 13 Mar 2023 04:25:55 GMT expires: - '-1' pragma: @@ -4656,7 +4502,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580378.171.443.928542|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681555.998.436.848849|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4688,11 +4534,11 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/INH9berMk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"cosmosdb.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Cosmos DB overview, throughput, requests, - storage, availability latency, system and account management.","editable":true,"id":11,"links":[],"panels":[{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":1},"hiddenSeries":false,"id":2,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + storage, availability latency, system and account management.","editable":true,"id":7,"links":[],"panels":[{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":1},"hiddenSeries":false,"id":2,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure @@ -4792,21 +4638,21 @@ interactions: Group","multi":false,"name":"rg","options":[],"query":"ResourceGroups($sub)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false},{"allValue":null,"current":{"selected":false,"text":"Microsoft.DocumentDb/databaseAccounts","value":"Microsoft.DocumentDb/databaseAccounts"},"description":null,"error":null,"hide":0,"includeAll":false,"label":"Namespace","multi":false,"name":"ns","options":[{"selected":true,"text":"Microsoft.DocumentDb/databaseAccounts","value":"Microsoft.DocumentDb/databaseAccounts"}],"query":"Microsoft.DocumentDb/databaseAccounts","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"datasource":"${ds}","definition":"ResourceNames($sub, $rg, $ns)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Resource","multi":false,"name":"resource","options":[],"query":"ResourceNames($sub, $rg, $ns)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"tagValuesQuery":"","tags":[],"tagsQuery":"","type":"query","useTags":false}]},"time":{"from":"now-6h","to":"now"},"title":"Azure - / Insights / Cosmos DB","uid":"INH9berMk","version":2}}' + / Insights / Cosmos DB","uid":"INH9berMk","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Zi6CHXHGj7+Muy5uwj2eUA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MxNANndzPGyf8Qxe2p24Sw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:37 GMT + - Mon, 13 Mar 2023 04:25:55 GMT expires: - '-1' pragma: @@ -4814,7 +4660,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580378.408.437.244872|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681556.217.440.654346|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4846,11 +4692,11 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/8UDB1s3Gk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"dataexplorercluster.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Data Explorer Cluster Resource overview, - key mettrics, usage, tables, cache and ingestion.","editable":true,"id":4,"links":[],"panels":[{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":6,"panels":[],"title":"Overview","type":"row"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":0,"y":1},"id":4,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"KeepAlive","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + key mettrics, usage, tables, cache and ingestion.","editable":true,"id":8,"links":[],"panels":[{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":6,"panels":[],"title":"Overview","type":"row"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":0,"y":1},"id":4,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"KeepAlive","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure @@ -5968,14 +5814,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9C6FO0Dflr9WZti8cufKUQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Wyl9Wz35zvC9f/2NX2L8aw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:37 GMT + - Mon, 13 Mar 2023 04:25:55 GMT expires: - '-1' pragma: @@ -5983,7 +5829,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580378.669.441.692988|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681556.473.441.469479|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -6015,10 +5861,10 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/tQZAMYrMk response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-insights-key-vaults\",\"url\":\"/d/tQZAMYrMk/azure-insights-key-vaults\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:33Z\",\"updated\":\"2023-03-12T00:13:33Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-insights-key-vaults\",\"url\":\"/d/tQZAMYrMk/azure-insights-key-vaults\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:24Z\",\"updated\":\"2023-03-13T04:18:24Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"keyvault.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"7.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"graph\",\"name\":\"Graph\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"The - dashboard provides insights of Azure Key Vaults overview, failures and operations.\",\"editable\":true,\"id\":5,\"links\":[],\"panels\":[{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":0},\"id\":25,\"panels\":[],\"title\":\"Overview\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"percentage\",\"steps\":[{\"color\":\"green\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":7,\"w\":19,\"x\":0,\"y\":1},\"id\":9,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"none\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + dashboard provides insights of Azure Key Vaults overview, failures and operations.\",\"editable\":true,\"id\":12,\"links\":[],\"panels\":[{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":0},\"id\":25,\"panels\":[],\"title\":\"Overview\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"percentage\",\"steps\":[{\"color\":\"green\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":7,\"w\":19,\"x\":0,\"y\":1},\"id\":9,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"none\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"Availability\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 @@ -6225,14 +6071,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nGvBIo1/2EuFMD81jYVYYw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OzczjkFt/HzBTmheoseLRQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:38 GMT + - Mon, 13 Mar 2023 04:25:55 GMT expires: - '-1' pragma: @@ -6240,8 +6086,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580379.049.437.13988|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681556.795.437.656983|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -6272,12 +6118,12 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/3n2E8CrGk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"storage.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"9.0.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"A dashboard that provides a unified view of Azure Storage services performance, capacity, and availability - metrics.","editable":true,"id":6,"iteration":null,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"green","value":100}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":0,"y":0},"id":7,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"/^Availability$/","values":false},"showThresholdLabels":false,"showThresholdMarkers":false,"text":{}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + metrics.","editable":true,"id":3,"iteration":null,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"green","value":100}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":0,"y":0},"id":7,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"/^Availability$/","values":false},"showThresholdLabels":false,"showThresholdMarkers":false,"text":{}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 @@ -6595,14 +6441,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-tgwhmBbltlr8SQMOw7OCVw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EviVA6T4PfATGKryufywRQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:38 GMT + - Mon, 13 Mar 2023 04:25:56 GMT expires: - '-1' pragma: @@ -6610,8 +6456,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580379.285.436.55587|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681557.057.439.269174|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -6642,12 +6488,12 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByRG response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsRG.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"This dashboard shows the performance and health of Azure Virtual Machines via different metrics - collected by Azure Monitor VM Insights. Filter data by Resource Group","editable":true,"id":9,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv + collected by Azure Monitor VM Insights. Filter data by Resource Group","editable":true,"id":5,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003eWelcome to the Azure Monitor data source for Grafana. To learn more about it, visit our \u003ca href=\"https://grafana.com/docs/grafana/latest/datasources/azuremonitor/\" @@ -7751,21 +7597,21 @@ interactions: 90)\\, 2), P95th : score= round(percentile(Val\\, 95)\\, 2)","queryValue":"","skipUrlSync":false,"type":"custom"},{"current":{},"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"definition":"","hide":2,"includeAll":false,"multi":false,"name":"tenantId","options":[],"query":{"azureLogAnalytics":{"query":"InsightsMetrics\r\n| project TenantId","resource":"/subscriptions/$sub"},"queryType":"Azure Log Analytics","refId":"A","subscription":""},"refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-15m","to":"now"},"title":"Azure - / Insights / Virtual Machines by Resource Group","uid":"AzVmInsightsByRG","version":2}}' + / Insights / Virtual Machines by Resource Group","uid":"AzVmInsightsByRG","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-UIXTte+49G6bRxKKa9QdPA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lBDIRBlrbpcsU/HN1Ol0lg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:38 GMT + - Mon, 13 Mar 2023 04:25:56 GMT expires: - '-1' pragma: @@ -7773,7 +7619,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580379.564.442.399547|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681557.339.441.835715|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -7805,12 +7651,12 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByWS response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsWs.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"This dashboard shows the performance and health of Azure Virtual Machines via different metrics - collected by Azure Monitor VM Insights. Filter data by Workspace","editable":true,"id":8,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv + collected by Azure Monitor VM Insights. Filter data by Workspace","editable":true,"id":9,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003eWelcome to the Azure Monitor data source for Grafana. To learn more about it, visit our \u003ca href=\"https://grafana.com/docs/grafana/latest/datasources/azuremonitor/\" @@ -8852,21 +8698,21 @@ interactions: 10)\\, 2), P50th : score= round(percentile(Val\\, 50)\\, 2), P80th : score= round(percentile(Val\\, 80)\\, 2), P90th : score= round(percentile(Val\\, 90)\\, 2), P95th : score= round(percentile(Val\\, 95)\\, 2)","queryValue":"","skipUrlSync":false,"type":"custom"}]},"time":{"from":"now-15m","to":"now"},"title":"Azure - / Insights / Virtual Machines by Workspace","uid":"AzVmInsightsByWS","version":2}}' + / Insights / Virtual Machines by Workspace","uid":"AzVmInsightsByWS","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-qtlh+HO6r2mdAq2jjpuaWA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gSqWdnAqPYiA9RR1PadHew';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:39 GMT + - Mon, 13 Mar 2023 04:25:56 GMT expires: - '-1' pragma: @@ -8874,7 +8720,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580379.983.440.982605|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681557.639.435.116887|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -8906,7 +8752,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Mtwt2BV7k response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:33Z","updated":"2023-03-12T00:13:33Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"arg.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.2.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Resource Graph Explorer overview, compute, @@ -8914,7 +8760,7 @@ interactions: dashboard we sourced from the [Azure Inventory Workbook](https://github.com/scautomation/Azure-Inventory-Workbook) by Billy York. You can find more sample Azure Resource Graph queries by Billy at this [GitHub](https://github.com/scautomation/AzureResourceGraph-Examples) - repository.","editable":true,"gnetId":14986,"id":3,"links":[{"asDropdown":false,"icon":"external + repository.","editable":true,"gnetId":14986,"id":6,"links":[{"asDropdown":false,"icon":"external link","includeVars":false,"keepTime":false,"tags":[],"targetBlank":true,"title":"Azure Resource Graph queries by Billy York","tooltip":"See more","type":"link","url":"https://github.com/scautomation/AzureResourceGraph-Examples"}],"liveNow":false,"panels":[{"collapsed":false,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[],"title":"Overview","type":"row"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":6,"w":7,"x":0,"y":1},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"Resources | summarize count(type)","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure @@ -9547,14 +9393,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-96heUuNDCgt6i1WF0HpwqQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/h7zeEU0NLosWjxgC+QZ1Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:39 GMT + - Mon, 13 Mar 2023 04:25:56 GMT expires: - '-1' pragma: @@ -9562,7 +9408,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580380.276.442.319063|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681557.936.442.525386|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9594,9 +9440,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/xLERdASnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"cluster-detail","url":"/d/xLERdASnz/cluster-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"ClusterDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"cluster-detail","url":"/d/xLERdASnz/cluster-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"ClusterDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":17,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":14,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster, this widget shows it''s health timeline - time at which each health state value was reported. For a group of clusters, it shows the percentage of each health state reported @@ -9660,21 +9506,21 @@ interactions: ClusterName)","description":"The name of the cluster you want to see data for","error":null,"hide":0,"includeAll":true,"label":"Cluster Name","multi":true,"name":"ClusterName","options":[],"query":"dimensionValues($account, ServiceFabric, ClusterHealthState, ClusterName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"Cluster - Detail","uid":"xLERdASnz","version":2}}' + Detail","uid":"xLERdASnz","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vxYIl6Wy+NsAef9ANC2K5w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GUu5YbP4I/wDS17QpxqiUA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:39 GMT + - Mon, 13 Mar 2023 04:25:57 GMT expires: - '-1' pragma: @@ -9682,7 +9528,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580380.642.437.260026|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681558.208.442.800395|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9714,7 +9560,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/QTVw7iK7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"geneva-health","url":"/d/QTVw7iK7z/geneva-health","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"Health.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"geneva-health","url":"/d/QTVw7iK7z/geneva-health","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"Health.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"datasource":"Geneva Datasource","enable":true,"iconColor":"light-blue","name":"Geneva Health Annotations","target":{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Watchdog Health","isAnnotationsMode":true,"limit":100,"matchAny":false,"metric":"","metricsQueryType":"ui","namespace":"","samplingType":"","selectedWatchdogResourceVar":"$nodeIds","service":"health","tags":[],"type":"dashboard","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":19,"links":[],"panels":[{"datasource":"Geneva Datasource","gridPos":{"h":21,"w":6,"x":0,"y":0},"id":2,"options":{"monitorNameVar":"$monitorName","monitorVar":"$monitor","orientation":"vertical","resourceHealthVar":"$nodeIds","resourceNameVar":"$selectedRes"},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","service":"health","topologyNodeId":"$res","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Topology","type":"geneva-health-panel"},{"datasource":"Geneva @@ -9729,21 +9575,21 @@ interactions: Datasource","definition":"Accounts()","description":null,"error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"acc","options":[],"query":"Accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{},"datasource":"Geneva Datasource","definition":"HealthResources($acc)","description":null,"error":null,"hide":0,"includeAll":false,"label":"Health Resource","multi":false,"name":"res","options":[],"query":"HealthResources($acc)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"},{"allValue":null,"current":{"selected":false,"text":"","value":""},"description":null,"error":null,"hide":2,"includeAll":false,"label":null,"multi":false,"name":"nodeIds","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"allValue":null,"current":{},"description":null,"error":null,"hide":2,"includeAll":false,"label":null,"multi":false,"name":"selectedRes","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"current":{},"hide":2,"includeAll":false,"multi":false,"name":"monitor","options":[],"query":"","skipUrlSync":false,"type":"custom"},{"current":{},"hide":2,"includeAll":false,"multi":false,"name":"monitorName","options":[],"query":"","skipUrlSync":false,"type":"custom"}]},"time":{"from":"now-1h","to":"now"},"timepicker":{},"timezone":"","title":"Geneva - Health","uid":"QTVw7iK7z","version":2}}' + Health","uid":"QTVw7iK7z","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AR0VHjS33U1JSuWDZAoM4A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yBR8Qiu+arpQJuYByJ8uRA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:39 GMT + - Mon, 13 Mar 2023 04:25:57 GMT expires: - '-1' pragma: @@ -9751,7 +9597,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580380.874.440.522194|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681558.437.436.198965|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9783,13 +9629,13 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/icm-example response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"icm.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[{"description":"","label":"IcM + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:25Z","updated":"2023-03-13T04:18:25Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"icm.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[{"description":"","label":"IcM via ADX","name":"DS_ICM_VIA ADX","pluginId":"grafana-azure-data-explorer-datasource","pluginName":"Azure Data Explorer Datasource","type":"datasource"}],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.1"},{"id":"grafana-azure-data-explorer-datasource","name":"Azure Data Explorer Datasource","type":"datasource","version":"3.6.1"},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":16,"iteration":1648251431667,"links":[],"liveNow":false,"panels":[{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":22,"panels":[],"title":"About + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":24,"iteration":1648251431667,"links":[],"liveNow":false,"panels":[{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":22,"panels":[],"title":"About this dashboard","type":"row"},{"gridPos":{"h":7,"w":5,"x":0,"y":1},"id":24,"options":{"content":"This dashboard is based on the [IcM canned dashboard](https://lens.msftcloudes.com/#/dashboard/V2%20Dashboard?_g=(ws:ws-icm-business-dashboard-workspace)).\n\nQuestions? Comments? Please reach out to [us](mailto://mitulkdirs@microsoft.com?subject=IcM%20Canned%20Dashboard%20Feedback).","mode":"markdown"},"pluginVersion":"8.4.1","title":"About @@ -9929,21 +9775,21 @@ interactions: Details","type":"table"}],"refresh":"","schemaVersion":35,"style":"dark","tags":[],"templating":{"list":[{"current":{},"datasource":{"type":"grafana-azure-data-explorer-datasource","uid":"${DS_ICM_VIA ADX}"},"definition":"Tenants | distinct TenantName","hide":0,"includeAll":false,"label":"Service","multi":false,"name":"svc","options":[],"query":"Tenants | distinct TenantName","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-90d","to":"now"},"timepicker":{},"timezone":"","title":"IcM - Canned Dashboard","uid":"icm-example","version":2,"weekStart":""}}' + Canned Dashboard","uid":"icm-example","version":1,"weekStart":""}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EN4DoQNmQJmC4E0/RQYx5g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sZbAeP3v/2a09GpdeK1Hzg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:40 GMT + - Mon, 13 Mar 2023 04:25:57 GMT expires: - '-1' pragma: @@ -9951,7 +9797,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580381.056.435.941769|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681558.628.440.299817|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9983,7 +9829,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/sVKyjvpnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"IncomingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":24,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"IncomingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":15,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"Rate\")\n\n| @@ -10036,21 +9882,21 @@ interactions: Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, CallerName)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Caller Name","multi":true,"name":"CallerName","options":[],"query":"dimensionValues($Account, $Namespace, $Metric, CallerName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"Incoming - Service QoS","uid":"sVKyjvpnz","version":2}}' + Service QoS","uid":"sVKyjvpnz","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SMS/9Hxl6zYO0Ag/OeQS1w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-87jnJCQSl7gMhkGSivBfkw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:40 GMT + - Mon, 13 Mar 2023 04:25:57 GMT expires: - '-1' pragma: @@ -10058,7 +9904,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580381.329.440.760334|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681558.835.441.818954|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10090,7 +9936,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/_sKhXTH7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"node-detail","url":"/d/_sKhXTH7z/node-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"NodeDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"node-detail","url":"/d/_sKhXTH7z/node-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"NodeDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":20,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster and an application, this @@ -10121,21 +9967,21 @@ interactions: NodeName)","description":"Node you want to see data for","error":null,"hide":0,"includeAll":false,"label":"Node Name","multi":true,"name":"NodeName","options":[],"query":"dimensionValues($account, ServiceFabric, NodeHealthState, NodeName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-6h","to":"now"},"timepicker":{},"timezone":"","title":"Node - Detail","uid":"_sKhXTH7z","version":2}}' + Detail","uid":"_sKhXTH7z","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PW/kcnGEq3u3zhLIPomJ8g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-whQTgZ2oi42PwGHLsbiP8w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:40 GMT + - Mon, 13 Mar 2023 04:25:58 GMT expires: - '-1' pragma: @@ -10143,8 +9989,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580381.571.443.498225|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678681559.05.436.469384|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -10175,7 +10021,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6naEwcp7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"OutgoingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":25,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"OutgoingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":16,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"RequestRate\")\n\n| @@ -10235,21 +10081,21 @@ interactions: Datasource","definition":"dimensionValues($Account, $Namespace, $Metric, DependencyName)","description":null,"error":null,"hide":0,"includeAll":true,"label":"Dependency Name","multi":true,"name":"DependencyName","options":[],"query":"dimensionValues($Account, $Namespace, $Metric, DependencyName)","refresh":1,"regex":"","skipUrlSync":false,"sort":0,"type":"query"}]},"time":{"from":"now-1h","to":"now"},"timepicker":{},"timezone":"","title":"Outgoing - Service QoS","uid":"6naEwcp7z","version":2}}' + Service QoS","uid":"6naEwcp7z","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OK9m2+CwaYs79p0/qCglzw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OqzJmEyk7/o7WeCrf/djew';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:40 GMT + - Mon, 13 Mar 2023 04:25:58 GMT expires: - '-1' pragma: @@ -10257,7 +10103,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580381.792.435.892898|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681559.241.440.696883|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10289,7 +10135,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/GIgvhSV7z response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"service-fabric-application-overview\",\"url\":\"/d/GIgvhSV7z/service-fabric-application-overview\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-12T00:13:34Z\",\"updated\":\"2023-03-12T00:13:34Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"ServiceFabricApplicationOverview.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"service-fabric-application-overview\",\"url\":\"/d/GIgvhSV7z/service-fabric-application-overview\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:25Z\",\"updated\":\"2023-03-13T04:18:25Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"ServiceFabricApplicationOverview.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"target\":{\"limit\":100,\"matchAny\":false,\"tags\":[],\"type\":\"dashboard\"},\"type\":\"dashboard\"}]},\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":21,\"links\":[{\"asDropdown\":true,\"icon\":\"external link\",\"includeVars\":true,\"keepTime\":true,\"tags\":[],\"targetBlank\":true,\"title\":\"New @@ -10366,14 +10212,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ENkEssZXKrOwrut1SOgmLw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-czzcnA2kaynKMIapATwIsw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:41 GMT + - Mon, 13 Mar 2023 04:25:58 GMT expires: - '-1' pragma: @@ -10381,7 +10227,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580382.009.442.477353|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681559.466.441.281285|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10410,12 +10256,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz + uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:30Z","updated":"2023-03-12T00:19:30Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":28,"folderUid":"0XPIK5-4k","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/0XPIK5-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":29,"title":"Test - Dashboard","uid":"adUIF5aVz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:49Z","updated":"2023-03-13T04:25:49Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":27,"folderUid":"3OpsFo-Vk","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":28,"title":"Test + Dashboard","uid":"y92yFT-Vz","version":1}}' headers: cache-control: - no-cache @@ -10424,14 +10270,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XuVdcvBnvDT5kl0svhIt+A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-wRbjNA7m+xk2pK5ziawx4w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:41 GMT + - Mon, 13 Mar 2023 04:25:58 GMT expires: - '-1' pragma: @@ -10439,7 +10285,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580382.228.443.141128|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681559.678.438.207896|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10468,10 +10314,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz response: body: - string: '{"message":"Dashboard not found","traceID":"537130b59b46c15ca6da9dce91c9039a"}' + string: '{"message":"Dashboard not found","traceID":"c4f9efab8c0320662097d93fe03b700e"}' headers: cache-control: - no-cache @@ -10480,14 +10326,14 @@ interactions: content-length: - '78' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ym7cL/DYuyJBqjHsQQjzpQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vnzvPBsh2p2xtE6+chvJBg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:41 GMT + - Mon, 13 Mar 2023 04:25:59 GMT expires: - '-1' pragma: @@ -10495,7 +10341,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580382.432.435.487927|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681559.873.439.202683|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10527,7 +10373,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":27,"uid":"G3VNKc-4k","title":"Test Folder","url":"/dashboards/f/G3VNKc-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:19:41.637699283Z","updatedBy":"example@example.com","updated":"2023-03-12T00:19:41.637699383Z","version":1,"parentUid":""}' + string: '{"id":25,"uid":"HICsFo-4k","title":"Test Folder","url":"/dashboards/f/HICsFo-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:59.273924832Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:59.273924932Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -10536,14 +10382,14 @@ interactions: content-length: - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9Fj9TG8MZ1gpLRS54CoUEg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aXxOfsPXkjdnsBa8qqEpzw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:41 GMT + - Mon, 13 Mar 2023 04:25:59 GMT expires: - '-1' pragma: @@ -10551,7 +10397,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580382.617.441.416684|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681560.248.443.232099|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10566,17 +10412,17 @@ interactions: message: OK - request: body: '{"meta": {"type": "db", "canSave": true, "canEdit": true, "canAdmin": true, - "canStar": true, "canDelete": true, "slug": "test-dashboard", "url": "/d/adUIF5aVz/test-dashboard", - "expires": "0001-01-01T00:00:00Z", "created": "2023-03-12T00:19:30Z", "updated": - "2023-03-12T00:19:30Z", "updatedBy": "example@example.com", "createdBy": "example@example.com", - "version": 1, "hasAcl": false, "isFolder": false, "folderId": 28, "folderUid": - "0XPIK5-4k", "folderTitle": "Test Folder", "folderUrl": "/dashboards/f/0XPIK5-4k/test-folder", + "canStar": true, "canDelete": true, "slug": "test-dashboard", "url": "/d/y92yFT-Vz/test-dashboard", + "expires": "0001-01-01T00:00:00Z", "created": "2023-03-13T04:25:49Z", "updated": + "2023-03-13T04:25:49Z", "updatedBy": "example@example.com", "createdBy": "example@example.com", + "version": 1, "hasAcl": false, "isFolder": false, "folderId": 27, "folderUid": + "3OpsFo-Vk", "folderTitle": "Test Folder", "folderUrl": "/dashboards/f/3OpsFo-Vk/test-folder", "provisioned": false, "provisionedExternalId": "", "annotationsPermissions": {"dashboard": {"canAdd": false, "canEdit": false, "canDelete": false}, "organization": {"canAdd": false, "canEdit": false, "canDelete": false}}, "hasPublicDashboard": false, "publicDashboardAccessToken": "", "publicDashboardUid": "", "publicDashboardEnabled": - false}, "dashboard": {"title": "Test Dashboard", "uid": "adUIF5aVz", "version": - 1}, "folderId": 27, "overwrite": true}' + false}, "dashboard": {"title": "Test Dashboard", "uid": "y92yFT-Vz", "version": + 1}, "folderId": 25, "overwrite": true}' headers: Accept: - '*/*' @@ -10594,7 +10440,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":28,"slug":"test-dashboard","status":"success","uid":"adUIF5aVz","url":"/d/adUIF5aVz/test-dashboard","version":1}' + string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"y92yFT-Vz","url":"/d/y92yFT-Vz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -10603,14 +10449,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5DoFeOy/bdAvrQKgJZGitQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5q2QC71N6ZZwX4pk4h2TXw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:42 GMT + - Mon, 13 Mar 2023 04:25:59 GMT expires: - '-1' pragma: @@ -10618,7 +10464,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580382.821.443.498366|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681560.453.435.703429|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10648,9 +10494,9 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/duj3tR77k response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"warmpathqos","url":"/d/duj3tR77k/warmpathqos","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:13:34Z","updated":"2023-03-02T01:06:43Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":2,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"WarmPathQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"warmpathqos","url":"/d/duj3tR77k/warmpathqos","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:25Z","updated":"2023-03-13T04:18:25Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"WarmPathQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":23,"links":[],"panels":[{"datasource":null,"gridPos":{"h":3,"w":24,"x":0,"y":0},"id":2,"options":{"content":"To + \u0026 Alerts","type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":22,"links":[],"panels":[{"datasource":null,"gridPos":{"h":3,"w":24,"x":0,"y":0},"id":2,"options":{"content":"To know more check \u003cbr\u003e\n\u003ca href=\"https://eng.ms/docs/products/geneva/logs/howtoguides/qos/overview\"\u003eWarmPath QoS Metrics Overview\u003c/a\u003e","mode":"html"},"pluginVersion":"8.0.6","title":"Geneva WarmPath Quick Links","type":"text"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":5,"w":12,"x":0,"y":3},"id":4,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"8.0.6","targets":[{"account":"$account","backends":[],"customSeriesNaming":"Total/1000","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"LatencyMs\").preaggregate(\"Total\")\n| @@ -10696,21 +10542,21 @@ interactions: \n| top 40 by avg(Count) desc","refId":"A","samplingType":"","service":"metrics","useBackends":false,"useCustomSeriesNaming":true}],"title":"Pipeline Errors","type":"piechart"}],"refresh":false,"schemaVersion":30,"style":"dark","tags":[],"templating":{"list":[{"allValue":null,"current":{},"datasource":"Geneva Datasource","definition":"accounts()","description":"The Geneva metrics account - name","error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"account","options":[],"query":"accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":1,"type":"query"},{"auto":true,"auto_count":30,"auto_min":"10s","current":{"selected":false,"text":"auto","value":"$__auto_interval_interval"},"description":null,"error":null,"hide":0,"label":"Interval","name":"interval","options":[{"selected":true,"text":"auto","value":"$__auto_interval_interval"},{"selected":false,"text":"1m","value":"1m"},{"selected":false,"text":"10m","value":"10m"},{"selected":false,"text":"30m","value":"30m"},{"selected":false,"text":"1h","value":"1h"},{"selected":false,"text":"2h","value":"2h"},{"selected":false,"text":"3h","value":"3h"},{"selected":false,"text":"6h","value":"6h"},{"selected":false,"text":"12h","value":"12h"},{"selected":false,"text":"1d","value":"1d"},{"selected":false,"text":"2d","value":"2d"},{"selected":false,"text":"3d","value":"3d"},{"selected":false,"text":"7d","value":"7d"},{"selected":false,"text":"14d","value":"14d"},{"selected":false,"text":"30d","value":"30d"}],"query":"1m,10m,30m,1h,2h,3h,6h,12h,1d,2d,3d,7d,14d,30d","queryValue":"","refresh":2,"skipUrlSync":false,"type":"interval"}]},"time":{"from":"now-7d","to":"now"},"timepicker":{},"timezone":"","title":"WarmPathQoS","uid":"duj3tR77k","version":2}}' + name","error":null,"hide":0,"includeAll":false,"label":"Account","multi":false,"name":"account","options":[],"query":"accounts()","refresh":1,"regex":"","skipUrlSync":false,"sort":1,"type":"query"},{"auto":true,"auto_count":30,"auto_min":"10s","current":{"selected":false,"text":"auto","value":"$__auto_interval_interval"},"description":null,"error":null,"hide":0,"label":"Interval","name":"interval","options":[{"selected":true,"text":"auto","value":"$__auto_interval_interval"},{"selected":false,"text":"1m","value":"1m"},{"selected":false,"text":"10m","value":"10m"},{"selected":false,"text":"30m","value":"30m"},{"selected":false,"text":"1h","value":"1h"},{"selected":false,"text":"2h","value":"2h"},{"selected":false,"text":"3h","value":"3h"},{"selected":false,"text":"6h","value":"6h"},{"selected":false,"text":"12h","value":"12h"},{"selected":false,"text":"1d","value":"1d"},{"selected":false,"text":"2d","value":"2d"},{"selected":false,"text":"3d","value":"3d"},{"selected":false,"text":"7d","value":"7d"},{"selected":false,"text":"14d","value":"14d"},{"selected":false,"text":"30d","value":"30d"}],"query":"1m,10m,30m,1h,2h,3h,6h,12h,1d,2d,3d,7d,14d,30d","queryValue":"","refresh":2,"skipUrlSync":false,"type":"interval"}]},"time":{"from":"now-7d","to":"now"},"timepicker":{},"timezone":"","title":"WarmPathQoS","uid":"duj3tR77k","version":1}}' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Vugjy+bp7BlK8FQ2F2+DAw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7kxLzOM/bnNu1FjmF3rxrQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:42 GMT + - Mon, 13 Mar 2023 04:25:59 GMT expires: - '-1' pragma: @@ -10718,7 +10564,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580383.324.438.798205|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681560.665.441.414872|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10750,7 +10596,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"3d2390b2773c1a6abc04b7da70a297fc"}' + string: '{"message":"id is invalid","traceID":"02c6b34b3fb9f84c4597527518721a03"}' headers: cache-control: - no-cache @@ -10759,14 +10605,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1BiJI+80d43MLvwX7JBohQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lVUr9EwkQzJnzKKOwfxpsA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:42 GMT + - Mon, 13 Mar 2023 04:26:00 GMT expires: - '-1' pragma: @@ -10774,7 +10620,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580383.658.441.659200|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681560.981.437.316807|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10813,14 +10659,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rdj7v6vaR/ryTSY4io+0nQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-K7c9/FxvQdCT88A9uReMGA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:43 GMT + - Mon, 13 Mar 2023 04:26:00 GMT expires: - '-1' pragma: @@ -10828,8 +10674,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580384.096.442.85715|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678681561.457.440.277793|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -10858,7 +10704,7 @@ interactions: uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":27,"uid":"G3VNKc-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"HICsFo-4k","title":"Test Folder"}]' headers: cache-control: @@ -10868,14 +10714,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-22hndZy82T0LBuQ6mbzw6Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-BarT22IsOkyFJJunWEPU3A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:43 GMT + - Mon, 13 Mar 2023 04:26:00 GMT expires: - '-1' pragma: @@ -10883,7 +10729,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580384.294.442.711531|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681561.628.443.489418|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10910,12 +10756,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/adUIF5aVz + uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/adUIF5aVz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:19:42Z","updated":"2023-03-12T00:19:42Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":27,"folderUid":"G3VNKc-4k","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/G3VNKc-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":28,"title":"Test - Dashboard","uid":"adUIF5aVz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:59Z","updated":"2023-03-13T04:25:59Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":25,"folderUid":"HICsFo-4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/HICsFo-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":26,"title":"Test + Dashboard","uid":"y92yFT-Vz","version":1}}' headers: cache-control: - no-cache @@ -10924,14 +10770,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CEnvnA7yrULQWQt2rwu7IA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iHKwE5GV4p2tq0tN9vR86g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:19:43 GMT + - Mon, 13 Mar 2023 04:26:00 GMT expires: - '-1' pragma: @@ -10939,7 +10785,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678580384.594.443.905512|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678681561.906.437.736985|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml index c18ce52bb37..9e3ad081a9f 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml @@ -18,17 +18,17 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:04:59 GMT + - Mon, 13 Mar 2023 00:10:17 GMT etag: - - '"d8002617-0000-0600-0000-640d253a0000"' + - '"d900898e-0000-0600-0000-640e69e90000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -72,12 +72,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:04:59 GMT + - Mon, 13 Mar 2023 00:10:47 GMT etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' + - '"5f00866f-0000-0600-0000-640e69e80000"' expires: - '-1' pragma: @@ -118,12 +118,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:05:28 GMT + - Mon, 13 Mar 2023 00:11:17 GMT etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' + - '"5f00866f-0000-0600-0000-640e69e80000"' expires: - '-1' pragma: @@ -164,12 +164,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:05:59 GMT + - Mon, 13 Mar 2023 00:11:47 GMT etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' + - '"5f00866f-0000-0600-0000-640e69e80000"' expires: - '-1' pragma: @@ -210,12 +210,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:06:28 GMT + - Mon, 13 Mar 2023 00:12:17 GMT etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' + - '"5f00866f-0000-0600-0000-640e69e80000"' expires: - '-1' pragma: @@ -256,12 +256,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:06:58 GMT + - Mon, 13 Mar 2023 00:12:47 GMT etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' + - '"5f00866f-0000-0600-0000-640e69e80000"' expires: - '-1' pragma: @@ -302,12 +302,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:07:28 GMT + - Mon, 13 Mar 2023 00:13:18 GMT etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' + - '"5f00866f-0000-0600-0000-640e69e80000"' expires: - '-1' pragma: @@ -348,12 +348,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:07:59 GMT + - Mon, 13 Mar 2023 00:13:47 GMT etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' + - '"5f00866f-0000-0600-0000-640e69e80000"' expires: - '-1' pragma: @@ -394,150 +394,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' - headers: - cache-control: - - no-cache - content-length: - - '508' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 01:08:29 GMT - etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags --skip-role-assignments - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' - headers: - cache-control: - - no-cache - content-length: - - '508' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 01:08:58 GMT - etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags --skip-role-assignments - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-12T01:04:58.3062808Z"}' - headers: - cache-control: - - no-cache - content-length: - - '508' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 01:09:29 GMT - etag: - - '"5f002c5d-0000-0600-0000-640d253a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags --skip-role-assignments - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3dd896dc-6cf2-4ea7-81d7-64d8392e26a7*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-12T01:04:58.3062808Z","endTime":"2023-03-12T01:09:51.8151573Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-13T00:10:16.9153769Z","endTime":"2023-03-13T00:14:08.9320532Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -546,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:59 GMT + - Mon, 13 Mar 2023 00:14:17 GMT etag: - - '"5f003b5d-0000-0600-0000-640d265f0000"' + - '"5f00a46f-0000-0600-0000-640e6ad00000"' expires: - '-1' pragma: @@ -578,12 +440,12 @@ interactions: ParameterSetName: - -g -n -l --tags --skip-role-assignments User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -592,9 +454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:59 GMT + - Mon, 13 Mar 2023 00:14:18 GMT etag: - - '"d800dc18-0000-0600-0000-640d265f0000"' + - '"d900bc8e-0000-0600-0000-640e6ad00000"' expires: - '-1' pragma: @@ -626,12 +488,12 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache @@ -640,7 +502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:01 GMT + - Mon, 13 Mar 2023 00:14:20 GMT expires: - '-1' pragma: @@ -652,19 +514,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - b321b642-b8d7-4ee1-8d86-5d1b758c2e3c - - 6e52763a-472b-4b17-9e51-0ba7df09b414 - - 9d3be792-1383-4268-8f9d-e09be03a8828 - - 4e307842-b292-4976-8054-af777b6520ea - - c7682f86-3a6b-4da0-a9c0-2e1a6345b3cc - - 8424bcb2-581b-49df-ad73-8f03a2125d96 - - 9380fabc-adce-48d4-8167-dc0f40652d15 - - 1beabf8e-05dd-4590-b78a-5fa374b4407d - - fe8f1906-e1e3-46f2-883a-155b238b7612 - - 735a3d0d-081e-43bc-aa61-e9fe5229031d - - 6a61b42d-69cb-42b0-96ad-522d040cb098 - - 92d81649-f14f-4919-9d4c-080f766c588a - - cac3e635-e95f-4a97-956e-a188466a1aaf + - 080e157c-c9e4-4908-b81f-89bf74405278 + - f00a6452-3749-4b57-ae85-739f21f2528a + - 60e79f8f-a330-4593-83d0-6147b0eac680 + - 3fe79993-5046-43e3-bbff-9585233691c2 + - bca0d67d-85e4-45d9-bcc3-1aff16508702 + - 652215c7-cf12-4064-87e0-2f24264c8942 + - bfae2260-6576-4f81-8beb-31f66ddf0ec2 + - a911d15c-671e-4187-bc8c-36a860376aaf + - e13c6704-55b7-4220-b145-a1a02c8349f0 + - a776fc87-29eb-439e-a5a6-ffbb83b31cd1 + - bbe906a1-01e8-4106-ba30-5d5ab95129ae + - bfda8262-dbe8-4fa2-bfb6-be9d7045ee23 + - eb9f4bff-16a0-4c8c-a481-c29fceee61d5 status: code: 200 message: OK @@ -680,21 +542,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgtfqmtrqub2wqh7r5xfgwqaz6qbjesps6vsqpfrmwzbqdmvbxb45gecyyoyixzhj/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:09:07.7330226Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '4678' + - '3440' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:03 GMT + - Mon, 13 Mar 2023 00:14:22 GMT expires: - '-1' pragma: @@ -706,19 +568,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - fbc1d42d-94ff-4a02-9d0d-dfe476267bc6 - - e57def47-daea-455e-bb1b-51a55bf28eaa - - 83053c4f-ebc9-4458-b7c7-540db216b31d - - 1b311ba4-9b38-45ee-bc5b-2d9586a29aa4 - - 82b5e68b-fe51-43c1-8f79-b9271c984114 - - cf1f1712-1595-40de-9a3e-82eaed75d90a - - 57a0a991-9230-453e-a774-bbdbcfeefc4f - - 57ada1bb-8f2e-422b-b6f6-762378823711 - - d863b845-2603-4638-bf41-670fe3fb9cf6 - - c947b018-a06c-4037-be9b-1737fae50b6d - - aebdb008-63d1-43ad-8e24-d334c5da8461 - - b99cd72c-f361-4fb9-b82f-b3284119be47 - - 05ab589b-e031-4911-a91c-a8bd6d150945 + - 2a93d678-0ebb-4a1e-9823-2c765dea000f + - e9ba6620-3aaa-4a6e-b34f-ecedbb2d771a + - c38a9bd8-3a4d-49b7-8ee0-abd1cb996ac1 + - e5e65d65-ee17-4a95-a7ca-19111d199e22 + - 6dbbb0b7-eb0c-44f0-af0c-4bcb860e00f2 + - 8d470c1a-5961-42f4-9a3a-85aa2d807915 + - 0c121268-dfcd-4ef6-969e-f7f58635ee2d + - 79fdfce6-32c4-49cd-9e3b-843befe360ca + - 019fd463-7d26-48ad-bcb4-95a0daa0d5c0 + - 43712df0-ff17-462c-bf29-08c812f8755f + - 27f32782-f961-4d38-91d0-31cf141cb923 + - 97a76026-260a-4ac5-9f72-10bfb0ca3517 + - 3049e5f7-70ab-4986-a749-9bf8602d2e7b status: code: 200 message: OK @@ -736,12 +598,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -750,9 +612,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:03 GMT + - Mon, 13 Mar 2023 00:14:22 GMT etag: - - '"d800dc18-0000-0600-0000-640d265f0000"' + - '"d900bc8e-0000-0600-0000-640e6ad00000"' expires: - '-1' pragma: @@ -784,12 +646,12 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.3315019Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -798,9 +660,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:04 GMT + - Mon, 13 Mar 2023 00:14:23 GMT etag: - - '"d800dc18-0000-0600-0000-640d265f0000"' + - '"d900bc8e-0000-0600-0000-640e6ad00000"' expires: - '-1' pragma: @@ -841,25 +703,25 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:05.3524109Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["4.255.138.230","20.69.46.50"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:23.9225848Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.192.173","20.165.192.155"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1186' + - '1190' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:05 GMT + - Mon, 13 Mar 2023 00:14:24 GMT etag: - - '"d800a119-0000-0600-0000-640d266d0000"' + - '"d900bd8e-0000-0600-0000-640e6ae00000"' expires: - '-1' pragma: @@ -895,23 +757,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:05.3524109Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["4.255.138.230","20.69.46.50"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:23.9225848Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.192.173","20.165.192.155"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1186' + - '1190' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:06 GMT + - Mon, 13 Mar 2023 00:14:25 GMT etag: - - '"d800a119-0000-0600-0000-640d266d0000"' + - '"d900bd8e-0000-0600-0000-640e6ae00000"' expires: - '-1' pragma: @@ -943,23 +805,23 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key --public-network-access User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:05.3524109Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["4.255.138.230","20.69.46.50"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:23.9225848Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.192.173","20.165.192.155"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1186' + - '1190' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:07 GMT + - Mon, 13 Mar 2023 00:14:25 GMT etag: - - '"d800a119-0000-0600-0000-640d266d0000"' + - '"d900bd8e-0000-0600-0000-640e6ae00000"' expires: - '-1' pragma: @@ -1000,25 +862,25 @@ interactions: ParameterSetName: - -g -n --deterministic-outbound-ip --api-key --public-network-access User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:07.9479959Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:26.337416Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1162' + - '1161' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:08 GMT + - Mon, 13 Mar 2023 00:14:27 GMT etag: - - '"d800c419-0000-0600-0000-640d26700000"' + - '"d900be8e-0000-0600-0000-640e6ae20000"' expires: - '-1' pragma: @@ -1054,23 +916,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:07.9479959Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:26.337416Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1162' + - '1161' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:09 GMT + - Mon, 13 Mar 2023 00:14:27 GMT etag: - - '"d800c419-0000-0600-0000-640d26700000"' + - '"d900be8e-0000-0600-0000-640e6ae20000"' expires: - '-1' pragma: @@ -1102,23 +964,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.3315019Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:10:07.9479959Z"},"identity":{"principalId":"f015d16d-805d-43bd-9b6e-4400996d4ff5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:26.337416Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1162' + - '1161' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:09 GMT + - Mon, 13 Mar 2023 00:14:28 GMT etag: - - '"d800c419-0000-0600-0000-640d26700000"' + - '"d900be8e-0000-0600-0000-640e6ae20000"' expires: - '-1' pragma: @@ -1152,7 +1014,7 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: @@ -1162,7 +1024,7 @@ interactions: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -1170,13 +1032,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:10 GMT + - Mon, 13 Mar 2023 00:14:28 GMT etag: - - '"d800e119-0000-0600-0000-640d26720000"' + - '"d900bf8e-0000-0600-0000-640e6ae40000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -1206,54 +1068,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z"}' - headers: - cache-control: - - no-cache - content-length: - - '508' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 01:10:10 GMT - etag: - - '"5f00415d-0000-0600-0000-640d26720000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --yes - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1262,9 +1082,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:10:39 GMT + - Mon, 13 Mar 2023 00:14:58 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1290,12 +1110,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1304,9 +1124,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:11:10 GMT + - Mon, 13 Mar 2023 00:15:28 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1332,12 +1152,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1346,9 +1166,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:11:40 GMT + - Mon, 13 Mar 2023 00:15:58 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1374,12 +1194,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1388,9 +1208,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:12:10 GMT + - Mon, 13 Mar 2023 00:16:28 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1416,12 +1236,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1430,9 +1250,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:12:41 GMT + - Mon, 13 Mar 2023 00:16:59 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1458,12 +1278,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1472,9 +1292,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:13:12 GMT + - Mon, 13 Mar 2023 00:17:28 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1500,12 +1320,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1514,9 +1334,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:13:41 GMT + - Mon, 13 Mar 2023 00:17:58 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1542,12 +1362,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1556,9 +1376,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:14:11 GMT + - Mon, 13 Mar 2023 00:18:29 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1584,12 +1404,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1598,9 +1418,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:14:42 GMT + - Mon, 13 Mar 2023 00:18:58 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1626,12 +1446,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1640,9 +1460,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:15:11 GMT + - Mon, 13 Mar 2023 00:19:28 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1668,12 +1488,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1682,9 +1502,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:15:42 GMT + - Mon, 13 Mar 2023 00:19:59 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1710,12 +1530,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1724,9 +1544,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:16:12 GMT + - Mon, 13 Mar 2023 00:20:29 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1752,12 +1572,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1766,9 +1586,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:16:41 GMT + - Mon, 13 Mar 2023 00:20:59 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1794,12 +1614,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1808,9 +1628,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:17:12 GMT + - Mon, 13 Mar 2023 00:21:29 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1836,12 +1656,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-12T01:10:10.2511643Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' headers: cache-control: - no-cache @@ -1850,9 +1670,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:17:42 GMT + - Mon, 13 Mar 2023 00:21:59 GMT etag: - - '"5f00425d-0000-0600-0000-640d267a0000"' + - '"5f00ab6f-0000-0600-0000-640e6aed0000"' expires: - '-1' pragma: @@ -1878,12 +1698,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","name":"3664396c-b885-4712-9bda-196aaacca855*00553F7647D52661B035FE3146B3F5110F756F309516779D886182000CBC110D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-12T01:10:10.2511643Z","endTime":"2023-03-12T01:17:51.0524157Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-13T00:14:28.8166078Z","endTime":"2023-03-13T00:22:10.5594034Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -1892,9 +1712,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:18:12 GMT + - Mon, 13 Mar 2023 00:22:29 GMT etag: - - '"5f00685d-0000-0600-0000-640d283f0000"' + - '"5f00d46f-0000-0600-0000-640e6cb20000"' expires: - '-1' pragma: @@ -1924,12 +1744,10 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27f015d16d-805d-43bd-9b6e-4400996d4ff5%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=principalId%20eq%20'1fab1801-cb9b-42c8-a220-9f1094708cee' response: body: string: '{"value":[]}' @@ -1941,7 +1759,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:18:13 GMT + - Mon, 13 Mar 2023 00:22:30 GMT expires: - '-1' pragma: @@ -1971,21 +1789,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '2381' + - '2363' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:18:15 GMT + - Mon, 13 Mar 2023 00:22:31 GMT expires: - '-1' pragma: @@ -1997,19 +1815,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 91e8a309-df88-4124-a4c2-e6d6d38fa712 - - 6e8eba04-03ad-422d-9341-2e3b347ff859 - - 2fd7ccfa-d32d-48be-9633-80abbfe16d24 - - f194df2e-27a4-4def-a4e7-c8019cf022d8 - - b9ec1149-0579-4db9-9c42-b359aaae889c - - 48856512-974a-461f-ad2b-18b55d1cd3bb - - 2439897f-e2db-46d5-8ece-80a65dee486c - - bbd58522-a32a-40a7-b6e5-c4460e1d4479 - - b5c9c63d-81cf-4212-a313-ec4c32b5ad89 - - 4536cdbe-17d7-43d2-9a36-2b9a2ffac6ea - - 4cc296f4-a900-488b-b039-58201d03e0b0 - - 7d8a36eb-0e4a-4e69-914f-1bbabf1efde3 - - 77e13d0e-c963-477b-a83a-eab5c722a3a3 + - 7116ac0e-2cba-4367-9e35-ae36b09f3e4a + - 2c5efa14-a7c6-4d19-86e7-3b59a1aa3825 + - 8cfe56cd-6bc9-440b-87df-b239c45ec76c + - 5f56c422-bcd5-4a01-a1f2-ec67ff158c95 + - 6fdb74c9-4f69-4b33-9623-f1a6e65d4bc4 + - dd4eb282-5b8d-4520-9e6d-9e441a976b46 + - 4edd8004-d614-46b2-a4d7-c0e6b5f9fb6e + - 7e5326b7-224b-4d95-8c89-62be59d305d3 + - 5986c691-3d13-4597-87df-941980152f9a + - fbd670b1-2d9a-4ea3-8cec-cb64983b0b4e + - cf4dec83-2425-44ad-9f38-a15408282d0d + - d255e0de-0e60-4ed0-8d59-2c656193064f + - 934a5d11-fdbf-40a0-b86f-f4e9c7099480 status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml index 64b30433443..c1959d69943 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml @@ -18,17 +18,17 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:30:29 GMT + - Mon, 13 Mar 2023 04:14:51 GMT etag: - - '"5a00c8ac-0000-0d00-0000-640d1d240000"' + - '"640041d6-0000-0d00-0000-640ea33a0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -72,23 +72,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:30:30 GMT + - Mon, 13 Mar 2023 04:15:20 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -118,23 +118,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:30:59 GMT + - Mon, 13 Mar 2023 04:15:51 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -164,23 +164,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:31:30 GMT + - Mon, 13 Mar 2023 04:16:21 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -210,23 +210,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:32:00 GMT + - Mon, 13 Mar 2023 04:16:51 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -256,23 +256,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:32:30 GMT + - Mon, 13 Mar 2023 04:17:21 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -302,23 +302,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:33:00 GMT + - Mon, 13 Mar 2023 04:17:52 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -348,23 +348,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:33:30 GMT + - Mon, 13 Mar 2023 04:18:22 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -394,23 +394,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:34:01 GMT + - Mon, 13 Mar 2023 04:18:52 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -440,23 +440,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:34:31 GMT + - Mon, 13 Mar 2023 04:19:22 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -486,23 +486,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' headers: cache-control: - no-cache content-length: - - '504' + - '503' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:01 GMT + - Mon, 13 Mar 2023 04:19:52 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"43008bdf-0000-0d00-0000-640ea3390000"' expires: - '-1' pragma: @@ -532,23 +532,23 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-12T00:30:27.8680298Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-13T04:14:49.976251Z","endTime":"2023-03-13T04:20:16.684244Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '504' + - '573' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:31 GMT + - Mon, 13 Mar 2023 04:20:24 GMT etag: - - '"3d00cd40-0000-0d00-0000-640d1d230000"' + - '"4300c5e4-0000-0d00-0000-640ea4800000"' expires: - '-1' pragma: @@ -578,58 +578,12 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"95592306-3abc-4f1d-9e9a-e2c3e66d2f76*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-12T00:30:27.8680298Z","endTime":"2023-03-12T00:35:49.8063305Z","error":{},"properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 00:36:02 GMT - etag: - - '"3d00ab45-0000-0d00-0000-640d1e650000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -638,9 +592,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:02 GMT + - Mon, 13 Mar 2023 04:20:25 GMT etag: - - '"5a0005b5-0000-0d00-0000-640d1e650000"' + - '"640010df-0000-0d00-0000-640ea4800000"' expires: - '-1' pragma: @@ -707,19 +661,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sun, 12 Mar 2023 00:36:03 GMT + - Mon, 13 Mar 2023 04:20:25 GMT duration: - - '1117961' + - '1059895' expires: - '-1' ocp-aad-diagnostics-server-name: - - S4Qdzfh6wGIK1FXXBhSnMMCdVuqd5/mRQmyoRtmydCY= + - xTd8xvTuq1dweLqP1AcL+kh8+62p8XdDmW5DTNMaMu8= ocp-aad-session-key: - - RwnhcfdwftFA_20BzLHYQnuOpxio1aKR6FPVDDR15xdNgMGhMGDMPApT6Ow42-K8tKY4nqXw7iyL6eiCQFoaXJ8piHJXc_-IjCo_tMMqNb2usLHafb4pRltPiVMEZTVG.nEJpmWQK5BSeG-HFIW6ogO_nEQSPKAGjetyljO5pnOw + - jSF1SZ6ZIT_9qQK7TBXL7TpSDsWljXy8SGRjWR8uUyiAzUPzBkmOqQHteDE9_xU0g8vcihqSQVwkZWiXPaw_IyJG1EC4nqls5E0Y2Smak6ilBrGMECB-bceBfKrzQHtt._25ykHsegsevWHQTvfnVzdcUL10NHLj1q1dnYtu4izU pragma: - no-cache request-id: - - ac064c02-bf5c-4dc2-bdc4-9a0dc3a8402b + - 0ade08c4-a0a3-4fe1-968c-6cb38bfd80b6 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -747,12 +701,10 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in @@ -765,7 +717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:03 GMT + - Mon, 13 Mar 2023 04:20:25 GMT expires: - '-1' pragma: @@ -785,7 +737,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", - "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617", "principalType": "User"}}' headers: Accept: - application/json @@ -796,21 +748,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '258' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:04.7884008Z","updatedOn":"2023-03-12T00:36:05.2016332Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:26.6847037Z","updatedOn":"2023-03-13T04:20:27.1057107Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -819,7 +769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:06 GMT + - Mon, 13 Mar 2023 04:20:28 GMT expires: - '-1' pragma: @@ -849,12 +799,10 @@ interactions: ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can @@ -867,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:06 GMT + - Mon, 13 Mar 2023 04:20:29 GMT expires: - '-1' pragma: @@ -887,7 +835,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "90b7eca7-08e2-400f-96ea-1b46695de291"}}' + "principalId": "1487575b-5326-49bc-b290-d0e30bd05463", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -898,21 +846,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '270' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l --tags User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:07.7200675Z","updatedOn":"2023-03-12T00:36:08.1460031Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"1487575b-5326-49bc-b290-d0e30bd05463","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:29.7657404Z","updatedOn":"2023-03-13T04:20:30.1547430Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -921,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:10 GMT + - Mon, 13 Mar 2023 04:20:31 GMT expires: - '-1' pragma: @@ -951,12 +897,12 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache @@ -965,7 +911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:11 GMT + - Mon, 13 Mar 2023 04:20:32 GMT expires: - '-1' pragma: @@ -977,19 +923,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - e0b7e8bd-d8ce-4a54-abe7-e103ae65c9a2 - - 071987b9-01a5-4525-b1b8-5dc7177a79d6 - - ff63eadc-9017-4b8f-877c-f93a78e818cc - - e6685325-1302-49f3-98c6-f5a8e72d7318 - - 656ffb3c-287f-4575-af97-3ba227251315 - - cadc282b-14b3-40b4-a6e8-6f147f142664 - - 75a11ee4-42f3-4950-8c70-7519844212e3 - - 1af97359-552b-4c35-a09c-acc0bb3833eb - - 50c56684-6ff9-4587-bfd9-c00ecf434cc5 - - a014e1ff-fd0e-46dc-8e5a-95e2f94948dd - - ddabed12-9949-4d06-ac70-cc74bc2867cd - - 8ba5bd77-adf9-4bc5-a83d-c10983ceb3af - - a907bb77-6dac-4ef3-add7-977466f4a9a7 + - ed945e13-1e19-4c63-a547-191a55831a55 + - 300e8bc1-7ce3-49cd-add7-b03386c3c1fa + - b68b1fcd-36ba-4640-944e-47756d9f9676 + - 7293b7ed-de40-403c-9d66-f62a48545bc7 + - bec83997-75f6-4150-b7d4-45d01475d1d9 + - 14a9bf8b-4e2d-47d1-82c5-199de9012e0c + - 40d7eaee-710b-4a7f-9a51-73ce3fd31704 + - 4855c136-4fcc-44de-b4aa-489b00f3905a + - 382efde7-2415-4777-81dd-69dd6e7437bb + - 6235c972-b0a7-4cc5-9c95-89bb26a38d10 + - 2ab004f2-77f7-4510-8627-f675fd51fc83 + - 6a5eec3f-7d37-4fe5-83e0-ae7598497523 + - c0030ceb-619a-4f60-aff5-9e156826099a status: code: 200 message: OK @@ -1005,21 +951,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgdzzbgt34ji7nufr6dtq5eo6ry67hnkx5brtwshnsj7eioqbi7z2volqk72kip7o/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '4676' + - '5739' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:13 GMT + - Mon, 13 Mar 2023 04:20:33 GMT expires: - '-1' pragma: @@ -1031,19 +977,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 4df64bd2-7feb-4d9c-8c24-7d69de9e961c - - db39eef0-8125-4c33-9eba-62a19038c264 - - 1af13221-99b4-4f52-a977-4ecdedd17c7e - - 01359dbd-c2ec-417c-8780-8b06f30f9c3c - - d1372163-ebfc-497e-99b2-aaa64f9c5beb - - 09411e20-7d3a-43de-8394-9b01a1155f3b - - 79e81bdd-d650-43a3-a743-a9c55d436c7f - - 53d3364e-356c-4c6c-8c4b-45671ede2765 - - e5ff4cbb-cedd-406f-b337-3c3174cf773e - - af4c316b-fa0e-4ae5-9016-4cf20dc96979 - - 1680d0e4-493c-4c8c-b9a7-f649828ad7af - - 64f937f8-0191-470f-bed6-7243a2f4cfb6 - - ec034b88-7099-4573-b5d6-1a09fed3aacd + - 63098f76-648b-4c6b-9e14-dca5009ce9d3 + - 66142029-69eb-421e-aa08-538308004604 + - 33e1b9b3-fd70-4872-9374-63381e72fab9 + - 768d9075-dc49-40b7-bc5b-30ae1290e3c3 + - adcd53cc-1bf6-4c33-98fd-212790982e48 + - d0310ed0-a45e-4901-a94c-8eacf5aaf878 + - f6703528-f895-4429-b241-24be698cf91d + - 6fee50a7-dc25-4964-b89e-ad4aa8f35b83 + - fd8ddf27-73c0-485f-a12b-54576a38fcd8 + - d80e2e13-c13c-4af0-9f91-3426a5e3eaf6 + - ea1c6a41-e90e-495e-9bf7-2628652062ec + - dca433cb-6130-476e-b34d-a67fd4e9802c + - 2cb2e0e8-830e-4ec3-a252-ac8d9462f4ac status: code: 200 message: OK @@ -1061,12 +1007,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -1075,9 +1021,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:14 GMT + - Mon, 13 Mar 2023 04:20:36 GMT etag: - - '"5a0005b5-0000-0d00-0000-640d1e650000"' + - '"640010df-0000-0d00-0000-640ea4800000"' expires: - '-1' pragma: @@ -1109,12 +1055,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -1123,9 +1069,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:16 GMT + - Mon, 13 Mar 2023 04:20:37 GMT etag: - - '"5a0005b5-0000-0d00-0000-640d1e650000"' + - '"640010df-0000-0d00-0000-640ea4800000"' expires: - '-1' pragma: @@ -1160,7 +1106,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/org/users response: body: - string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-03-12T00:36:18Z","lastSeenAtAge":"\u003c + string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-03-13T04:20:39Z","lastSeenAtAge":"\u003c 1 minute","isDisabled":false}]' headers: cache-control: @@ -1170,14 +1116,14 @@ interactions: content-length: - '272' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sIGbpVhgkzqGsWV5T4mrgQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2IH81x8OAMXR3UAznz19cw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:18 GMT + - Mon, 13 Mar 2023 04:20:39 GMT expires: - '-1' pragma: @@ -1185,7 +1131,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581378.379.30.990918|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681239.543.28.418613|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1216,7 +1162,7 @@ interactions: response: body: string: '{"id":2,"email":"example@example.com","name":"example@example.com","login":"example@example.com","theme":"","orgId":1,"isGrafanaAdmin":false,"isDisabled":false,"isExternal":true,"authLabels":["Auth - Proxy"],"updatedAt":"2023-03-12T00:36:17Z","createdAt":"2023-03-12T00:36:17Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' + Proxy"],"updatedAt":"2023-03-13T04:20:38Z","createdAt":"2023-03-13T04:20:38Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' headers: cache-control: - no-cache @@ -1225,14 +1171,14 @@ interactions: content-length: - '331' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dUhrG5822j7PNXuTLBFaew';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WDrU/jBc61CyFGMVg0Jl5g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:19 GMT + - Mon, 13 Mar 2023 04:20:39 GMT expires: - '-1' pragma: @@ -1240,7 +1186,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581379.656.27.419880|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681240.715.30.4491|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1272,23 +1218,23 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '{"id":25,"uid":"AbL455-4k","title":"Test Folder","url":"/dashboards/f/AbL455-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:36:19.665587061Z","updatedBy":"example@example.com","updated":"2023-03-12T00:36:19.665587061Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"0RV2KoaVk","title":"Test Folder","url":"/dashboards/f/0RV2KoaVk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:20:40.5964421Z","updatedBy":"example@example.com","updated":"2023-03-13T04:20:40.5964422Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '352' + - '348' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MnlLKjixTLXGBPBbE3poXQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gtBhf0z2hUoXZFTM0E8iZA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:19 GMT + - Mon, 13 Mar 2023 04:20:40 GMT expires: - '-1' pragma: @@ -1296,7 +1242,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581380.647.27.262694|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681241.383.30.730018|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1326,7 +1272,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"7f3b53648580e3f7c8624383a076dd0f"}' + string: '{"message":"id is invalid","traceID":"d920205c4aab3ef81b10d95baf891d32"}' headers: cache-control: - no-cache @@ -1335,14 +1281,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iIHi++ugDkAqpnvEXT5P2Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xYvYfDO8SfXP0gvWspO70Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:20 GMT + - Mon, 13 Mar 2023 04:20:41 GMT expires: - '-1' pragma: @@ -1350,7 +1296,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581381.312.30.895710|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681242.282.28.556490|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1389,14 +1335,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+3xnzF9BLkGSQfv46dve2A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ln2JxV3rhqMl/YHSZ1Sm4A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:20 GMT + - Mon, 13 Mar 2023 04:20:42 GMT expires: - '-1' pragma: @@ -1404,7 +1350,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581381.857.27.939472|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681242.836.30.255477|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1434,7 +1380,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"AbL455-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"0RV2KoaVk","title":"Test Folder"}]' headers: cache-control: @@ -1444,14 +1390,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hcvjLbgxuGV2pMXvVjKqCQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F8ShHHapw4Edt82M/bu5kQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:21 GMT + - Mon, 13 Mar 2023 04:20:42 GMT expires: - '-1' pragma: @@ -1459,7 +1405,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581382.397.30.332977|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681243.525.31.828312|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1486,10 +1432,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/AbL455-4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/0RV2KoaVk response: body: - string: '{"message":"id is invalid","traceID":"36a8aa62f8411680f60b947dd03c6516"}' + string: '{"message":"id is invalid","traceID":"29a592055cce6f33918dff6dd2e97861"}' headers: cache-control: - no-cache @@ -1498,14 +1444,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3kmBC/utNDbs7Q4IQeR4Kg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TdmkN0ETctbsEM46ULLSag';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:22 GMT + - Mon, 13 Mar 2023 04:20:43 GMT expires: - '-1' pragma: @@ -1513,7 +1459,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581383.06.29.97769|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681244.198.29.894991|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1540,10 +1486,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/AbL455-4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/0RV2KoaVk response: body: - string: '{"id":25,"uid":"AbL455-4k","title":"Test Folder","url":"/dashboards/f/AbL455-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:36:19Z","updatedBy":"example@example.com","updated":"2023-03-12T00:36:19Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"0RV2KoaVk","title":"Test Folder","url":"/dashboards/f/0RV2KoaVk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:20:40Z","updatedBy":"example@example.com","updated":"2023-03-13T04:20:40Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -1552,14 +1498,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-RYsz81oo66FtCqVIRlZ3mQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Q5avpave4nXPFOrAW+uvGQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:22 GMT + - Mon, 13 Mar 2023 04:20:43 GMT expires: - '-1' pragma: @@ -1567,7 +1513,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581383.628.30.788719|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681244.758.30.357025|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1596,10 +1542,10 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/AbL455-4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/0RV2KoaVk response: body: - string: '{"id":25,"uid":"AbL455-4k","title":"Test Folder Update","url":"/dashboards/f/AbL455-4k/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-12T00:36:19Z","updatedBy":"example@example.com","updated":"2023-03-12T00:36:23Z","version":2,"parentUid":""}' + string: '{"id":24,"uid":"0RV2KoaVk","title":"Test Folder Update","url":"/dashboards/f/0RV2KoaVk/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:20:40Z","updatedBy":"example@example.com","updated":"2023-03-13T04:20:44Z","version":2,"parentUid":""}' headers: cache-control: - no-cache @@ -1608,14 +1554,14 @@ interactions: content-length: - '346' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ADCnQMoX79JUR2ysB4PqDw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7sCb70Epl6iyAe5E/CusjA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:23 GMT + - Mon, 13 Mar 2023 04:20:44 GMT expires: - '-1' pragma: @@ -1623,7 +1569,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581384.47.30.273361|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681245.327.30.174917|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1653,7 +1599,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"AbL455-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"0RV2KoaVk","title":"Test Folder Update"}]' headers: cache-control: @@ -1663,14 +1609,14 @@ interactions: content-length: - '148' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yJmCLZgrznp9pK1PUdK50g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MSFIC/OE1buVl0aRLEFEjw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:24 GMT + - Mon, 13 Mar 2023 04:20:45 GMT expires: - '-1' pragma: @@ -1678,7 +1624,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581385.163.28.701476|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681246.042.29.845901|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1708,7 +1654,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update response: body: - string: '{"message":"id is invalid","traceID":"c354f1f91e5da924aeaed9e4d87d88e7"}' + string: '{"message":"id is invalid","traceID":"7902cbf9a367591dc8bb3776054376d2"}' headers: cache-control: - no-cache @@ -1717,14 +1663,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-4C1nlmZWPSSsGO8qP0oXXw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2Z39sB74P/a7ehLWbYRvfQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:24 GMT + - Mon, 13 Mar 2023 04:20:45 GMT expires: - '-1' pragma: @@ -1732,7 +1678,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581385.823.29.296827|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681246.701.31.136444|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1771,14 +1717,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rz6KKX6jyRHABEyepXhOkw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hRJkseigOqlDPfE6qxM+gw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:25 GMT + - Mon, 13 Mar 2023 04:20:46 GMT expires: - '-1' pragma: @@ -1786,7 +1732,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581386.366.29.390|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681247.28.30.564545|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1816,7 +1762,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"AbL455-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"0RV2KoaVk","title":"Test Folder Update"}]' headers: cache-control: @@ -1826,14 +1772,14 @@ interactions: content-length: - '148' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-irtf8DxNHAjM/PcJWrHJ0Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pZmP3CUFpn9+9OBoB5W6VQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:25 GMT + - Mon, 13 Mar 2023 04:20:46 GMT expires: - '-1' pragma: @@ -1841,7 +1787,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581386.911.27.335689|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681247.847.30.398236|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1870,7 +1816,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/AbL455-4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/0RV2KoaVk response: body: string: '' @@ -1882,14 +1828,14 @@ interactions: content-length: - '0' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1QAObrtKXHM6c/2x2/6bQQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-4HNHPgWwH6NS/t6fiOBRXg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:26 GMT + - Mon, 13 Mar 2023 04:20:47 GMT expires: - '-1' pragma: @@ -1897,7 +1843,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581387.451.32.521303|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681248.416.28.844652|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1927,7 +1873,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"}]' headers: cache-control: - no-cache @@ -1936,14 +1882,14 @@ interactions: content-length: - '91' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-59KJEKn9fdc5AIxZiw6P1A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lsB48DklHM8GtC8vmmJv4Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:27 GMT + - Mon, 13 Mar 2023 04:20:48 GMT expires: - '-1' pragma: @@ -1951,7 +1897,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581388.182.29.974383|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681249.206.29.768938|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1984,7 +1930,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -1995,14 +1941,14 @@ interactions: content-length: - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jaKQKqciWq3zJ6wl3HwXwA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Uw2qZX3XtveRJzcVVlhlew';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:27 GMT + - Mon, 13 Mar 2023 04:20:48 GMT expires: - '-1' pragma: @@ -2010,7 +1956,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581388.839.30.292184|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681249.87.27.77375|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2040,7 +1986,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2050,14 +1996,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-a7noKqq4TTSSYU+LP0lRsg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fxxm/AoKOzlxNdoTuvkgTQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:28 GMT + - Mon, 13 Mar 2023 04:20:49 GMT expires: - '-1' pragma: @@ -2065,7 +2011,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581389.524.27.100364|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681250.599.30.758127|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2095,7 +2041,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2105,14 +2051,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-eS9eYV7ipsanIr5G2UQipw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Irr4ROqiq9wGurtTN7lGmQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:29 GMT + - Mon, 13 Mar 2023 04:20:50 GMT expires: - '-1' pragma: @@ -2120,7 +2066,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581390.184.27.684776|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681251.277.30.975530|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2153,7 +2099,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/3 response: body: - string: '{"datasource":{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource updated","name":"Test Azure Monitor Data Source"}' headers: @@ -2164,14 +2110,14 @@ interactions: content-length: - '463' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-W5NqevXddQiunKNwdHkUHQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-eIqqcXbJfhPtstqIfmRk3A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:29 GMT + - Mon, 13 Mar 2023 04:20:50 GMT expires: - '-1' pragma: @@ -2179,7 +2125,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581390.732.32.152046|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681251.84.27.116167|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2211,7 +2157,7 @@ interactions: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -2222,14 +2168,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nGtjLT9rF6Zzx/+5AL3+oA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fqXDSO5lnO1rPgbB2OdBVA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:30 GMT + - Mon, 13 Mar 2023 04:20:51 GMT expires: - '-1' pragma: @@ -2237,7 +2183,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581391.405.30.751422|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681252.565.29.637308|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2267,7 +2213,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"LbCVc5-4k","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2277,14 +2223,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9nTLMTF4QXgv20Y6L5iJSg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YxwniVDkdfgLbgYqR+PxAw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:31 GMT + - Mon, 13 Mar 2023 04:20:52 GMT expires: - '-1' pragma: @@ -2292,7 +2238,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581392.06.27.182148|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681253.244.30.999989|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2321,7 +2267,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/LbCVc5-4k + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/AG22Fo-Vk response: body: string: '{"id":3,"message":"Data source deleted"}' @@ -2333,14 +2279,14 @@ interactions: content-length: - '40' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-loh373VItFYIRL8unLhMOw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ttq0E9ui+Hm9asVXNvyA0g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:31 GMT + - Mon, 13 Mar 2023 04:20:52 GMT expires: - '-1' pragma: @@ -2348,7 +2294,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581392.6.30.318569|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681253.815.30.915809|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2389,14 +2335,14 @@ interactions: content-length: - '759' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YEc6zhOK/s0ju/xjMDhQ5w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SC3dUC9/UyzQciAMFiWzhA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:32 GMT + - Mon, 13 Mar 2023 04:20:53 GMT expires: - '-1' pragma: @@ -2404,7 +2350,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581393.282.29.274019|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681254.516.32.63891|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2437,7 +2383,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32.982017177Z","updated":"2023-03-12T00:36:32.982017177Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54.264684027Z","updated":"2023-03-13T04:20:54.264684127Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2446,14 +2392,14 @@ interactions: content-length: - '340' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AIB521OiJeWxcurBo46UGg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-a1v+X3XIolY333tskpfKBQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:32 GMT + - Mon, 13 Mar 2023 04:20:54 GMT expires: - '-1' pragma: @@ -2461,7 +2407,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581393.963.28.571771|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681255.228.30.368551|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2488,10 +2434,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/xbiIc5aVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/5F-2FoaVk response: body: - string: '{"message":"notificationId is invalid","traceID":"f406875d79c3120f59462ef85713766b"}' + string: '{"message":"notificationId is invalid","traceID":"d1c78db46dcc93ab4f93eb51a0538529"}' headers: cache-control: - no-cache @@ -2500,14 +2446,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8ZsRdZz2EEgl5PLgEk2bEA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ANpCDcn9VNqwnXaUIDZKvw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:33 GMT + - Mon, 13 Mar 2023 04:20:54 GMT expires: - '-1' pragma: @@ -2515,7 +2461,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581394.639.27.542562|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681255.924.31.815894|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2542,10 +2488,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/xbiIc5aVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/5F-2FoaVk response: body: - string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:32Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:54Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2554,14 +2500,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6Fuw+nUkPv/Q0SvA+fy3+g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VCIQqG9h6dIPVL1oNMxuBQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:34 GMT + - Mon, 13 Mar 2023 04:20:55 GMT expires: - '-1' pragma: @@ -2569,7 +2515,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581395.168.29.731546|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681256.491.30.914675|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2596,10 +2542,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/xbiIc5aVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/5F-2FoaVk response: body: - string: '{"message":"notificationId is invalid","traceID":"6a8b4d34d38d54179187671f7b9c8f81"}' + string: '{"message":"notificationId is invalid","traceID":"85a2d57be043f6c296b03a9869214a53"}' headers: cache-control: - no-cache @@ -2608,14 +2554,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-tTwBzvu060F8tvZCW5B5eA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kylx4uKywwO3hT1Ejmw4aQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:34 GMT + - Mon, 13 Mar 2023 04:20:56 GMT expires: - '-1' pragma: @@ -2623,7 +2569,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581395.831.28.457950|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681257.172.29.992300|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2650,10 +2596,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/xbiIc5aVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/5F-2FoaVk response: body: - string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:32Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:54Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2662,14 +2608,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-b/MI7hPFfufXiYqj3DJcjg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-itDGqMQQDyfDgrcH8yFqvw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:35 GMT + - Mon, 13 Mar 2023 04:20:56 GMT expires: - '-1' pragma: @@ -2677,7 +2623,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581396.392.27.904651|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681257.737.32.814200|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2710,7 +2656,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/1 response: body: - string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:35Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2719,14 +2665,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7o9biqf4EmcQySvuZrcmUA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cWpQlVRNbQUSqiArOd3kow';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:35 GMT + - Mon, 13 Mar 2023 04:20:57 GMT expires: - '-1' pragma: @@ -2734,7 +2680,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581396.931.31.972492|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681258.306.29.982540|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2764,7 +2710,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications response: body: - string: '[{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:35Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' + string: '[{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' headers: cache-control: - no-cache @@ -2773,14 +2719,14 @@ interactions: content-length: - '322' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+M0ujDOr3jlRTFHxg5Dl8w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9CU/ZIc5/mEc8txeBhUsrg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:36 GMT + - Mon, 13 Mar 2023 04:20:58 GMT expires: - '-1' pragma: @@ -2788,7 +2734,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581397.602.28.519407|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681259.002.28.917785|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2815,10 +2761,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/xbiIc5aVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/5F-2FoaVk response: body: - string: '{"message":"notificationId is invalid","traceID":"e5b8534efcd435c9f6746dbd2ce2e5b5"}' + string: '{"message":"notificationId is invalid","traceID":"3f02695bd1ff8ac9ad0fa23a27d88bb4"}' headers: cache-control: - no-cache @@ -2827,14 +2773,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8np8G2mRb+N+ybyYs7lS1w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-mEgFCgF0Wo7i/jXlc29Qzw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:37 GMT + - Mon, 13 Mar 2023 04:20:58 GMT expires: - '-1' pragma: @@ -2842,7 +2788,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581398.263.30.497585|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681259.66.31.347479|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2869,10 +2815,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/xbiIc5aVz + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/5F-2FoaVk response: body: - string: '{"id":1,"uid":"xbiIc5aVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-12T00:36:32Z","updated":"2023-03-12T00:36:35Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2881,14 +2827,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1whQ4ra9H7P7HM54SdiFUA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ojlg2HkfodsfmS2/PE9CCQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:37 GMT + - Mon, 13 Mar 2023 04:20:59 GMT expires: - '-1' pragma: @@ -2896,7 +2842,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581398.811.29.897760|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681260.219.27.79434|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2937,14 +2883,14 @@ interactions: content-length: - '34' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dZm3p4Y6Aea5bouquPoWcA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-awxPZWj51Lf9/sz/6tL6zA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:38 GMT + - Mon, 13 Mar 2023 04:20:59 GMT expires: - '-1' pragma: @@ -2952,7 +2898,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581399.357.29.206232|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681260.81.28.127517|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2991,14 +2937,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LnksG4f3n+QzL0ZFhZc1sw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-tGhzTRReBOEKhB56xTJ68g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:39 GMT + - Mon, 13 Mar 2023 04:21:00 GMT expires: - '-1' pragma: @@ -3006,7 +2952,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581400.016.28.868297|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681261.497.32.726120|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3038,7 +2984,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"5MDIc5-Vk","url":"/d/5MDIc5-Vk/test-dashboard","version":1}' + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"PGl2Ko-Vz","url":"/d/PGl2Ko-Vz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -3047,14 +2993,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bTFeoNhmKSQOPVpKEbMS0Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-wOMGqSyvCx8Z1AVOGeHxpw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:39 GMT + - Mon, 13 Mar 2023 04:21:01 GMT expires: - '-1' pragma: @@ -3062,7 +3008,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581400.673.30.984425|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681262.163.29.46735|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3089,11 +3035,11 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/5MDIc5-Vk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/PGl2Ko-Vz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/5MDIc5-Vk/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-12T00:36:39Z","updated":"2023-03-12T00:36:39Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":26,"title":"Test - Dashboard","uid":"5MDIc5-Vk","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/PGl2Ko-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:21:01Z","updated":"2023-03-13T04:21:01Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test + Dashboard","uid":"PGl2Ko-Vz","version":1}}' headers: cache-control: - no-cache @@ -3102,14 +3048,14 @@ interactions: content-length: - '832' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GGTZwG3Zob/Rb4Rt3DmU4Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F0DWW0tzbNJhAQcYFRFfNA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:40 GMT + - Mon, 13 Mar 2023 04:21:01 GMT expires: - '-1' pragma: @@ -3117,7 +3063,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581401.336.30.836525|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681262.886.29.687469|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3131,7 +3077,7 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard", "uid": "5MDIc5-Vk", "version": + body: '{"dashboard": {"title": "Test Dashboard", "uid": "PGl2Ko-Vz", "version": 1}, "overwrite": true}' headers: Accept: @@ -3150,7 +3096,7 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"5MDIc5-Vk","url":"/d/5MDIc5-Vk/test-dashboard","version":2}' + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"PGl2Ko-Vz","url":"/d/PGl2Ko-Vz/test-dashboard","version":2}' headers: cache-control: - no-cache @@ -3159,14 +3105,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ImB5kcDZwEgiesJTOZsFng';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-S0eWnVDvf/4Jb9IxW8bUjg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:41 GMT + - Mon, 13 Mar 2023 04:21:02 GMT expires: - '-1' pragma: @@ -3174,7 +3120,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581402.009.28.787420|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681263.577.31.136094|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3204,51 +3150,51 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":18,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"5MDIc5-Vk","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/5MDIc5-Vk/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":14,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"PGl2Ko-Vz","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/PGl2Ko-Vz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":17,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jZwA6qZSnnydArv6c5KFOA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ln/0r3etDwkeXq/3lvIdVQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:41 GMT + - Mon, 13 Mar 2023 04:21:03 GMT expires: - '-1' pragma: @@ -3256,7 +3202,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581402.693.29.766786|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681264.319.29.713996|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3297,14 +3243,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zlWTbu56a2lasOJUBsUTfQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GNgrTgkmxbcejeR2zFKQEg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:42 GMT + - Mon, 13 Mar 2023 04:21:03 GMT expires: - '-1' pragma: @@ -3312,7 +3258,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581403.243.29.920147|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681264.892.27.648822|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3341,10 +3287,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/5MDIc5-Vk + uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/PGl2Ko-Vz response: body: - string: '{"id":26,"message":"Dashboard Test Dashboard deleted","title":"Test + string: '{"id":25,"message":"Dashboard Test Dashboard deleted","title":"Test Dashboard"}' headers: cache-control: @@ -3354,14 +3300,14 @@ interactions: content-length: - '79' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fDR+GcokspXiXXiN4R/yIQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GyvbC4g3OgnmBDWiVO1Jyg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:42 GMT + - Mon, 13 Mar 2023 04:21:04 GMT expires: - '-1' pragma: @@ -3369,7 +3315,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581403.9.27.720055|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681265.57.32.186101|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3399,50 +3345,50 @@ interactions: uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":12,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":18,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hYRzAi0TllsYNPjGtqyJSQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EJrRqusDlgeWZMCBxG5qpw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:43 GMT + - Mon, 13 Mar 2023 04:21:05 GMT expires: - '-1' pragma: @@ -3450,7 +3396,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581404.589.30.753335|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681266.313.27.418445|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3491,14 +3437,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gu2q9fxcM2SzY1YDKvV/fg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zvvrCxxgWnrhOKXdO7EYlA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:36:44 GMT + - Mon, 13 Mar 2023 04:21:05 GMT expires: - '-1' pragma: @@ -3506,7 +3452,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581405.152.28.393736|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678681266.91.28.7156|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3533,12 +3479,12 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:25.1119542Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:25.1119542Z"},"identity":{"principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -3547,9 +3493,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:45 GMT + - Mon, 13 Mar 2023 04:21:06 GMT etag: - - '"5a0005b5-0000-0d00-0000-640d1e650000"' + - '"640010df-0000-0d00-0000-640ea4800000"' expires: - '-1' pragma: @@ -3583,7 +3529,7 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview response: @@ -3593,7 +3539,7 @@ interactions: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -3601,13 +3547,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:47 GMT + - Mon, 13 Mar 2023 04:21:07 GMT etag: - - '"5a0088b6-0000-0d00-0000-640d1e9f0000"' + - '"640054e0-0000-0d00-0000-640ea4b40000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -3637,23 +3583,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '504' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:36:47 GMT + - Mon, 13 Mar 2023 04:21:38 GMT etag: - - '"3d008b46-0000-0d00-0000-640d1e9f0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3679,23 +3625,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:37:17 GMT + - Mon, 13 Mar 2023 04:22:08 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3721,23 +3667,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:37:47 GMT + - Mon, 13 Mar 2023 04:22:38 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3763,23 +3709,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:38:18 GMT + - Mon, 13 Mar 2023 04:23:09 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3805,23 +3751,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:38:48 GMT + - Mon, 13 Mar 2023 04:23:39 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3847,23 +3793,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:39:18 GMT + - Mon, 13 Mar 2023 04:24:09 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3889,23 +3835,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:39:48 GMT + - Mon, 13 Mar 2023 04:24:39 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3931,23 +3877,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:40:19 GMT + - Mon, 13 Mar 2023 04:25:09 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -3973,23 +3919,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:40:49 GMT + - Mon, 13 Mar 2023 04:25:39 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -4015,23 +3961,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:41:18 GMT + - Mon, 13 Mar 2023 04:26:09 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -4057,23 +4003,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:41:49 GMT + - Mon, 13 Mar 2023 04:26:39 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -4099,23 +4045,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:42:20 GMT + - Mon, 13 Mar 2023 04:27:11 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -4141,23 +4087,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:42:50 GMT + - Mon, 13 Mar 2023 04:27:41 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -4183,23 +4129,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-12T00:36:47.1305517Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:43:20 GMT + - Mon, 13 Mar 2023 04:28:11 GMT etag: - - '"3d00b746-0000-0d00-0000-640d1eab0000"' + - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' expires: - '-1' pragma: @@ -4225,23 +4171,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","name":"dfa9b40f-4f6a-402d-903f-c4c11f7a82a7*292AB13F51E5B54FB47D6CC360F20E46938FE81A3E991F796C9C40B76886E31F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-12T00:36:47.1305517Z","endTime":"2023-03-12T00:43:31.997569Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-13T04:21:07.983948Z","endTime":"2023-03-13T04:28:32.331251Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '574' + - '573' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:43:51 GMT + - Mon, 13 Mar 2023 04:28:41 GMT etag: - - '"3d006b4c-0000-0d00-0000-640d20330000"' + - '"4300e8ec-0000-0d00-0000-640ea6700000"' expires: - '-1' pragma: @@ -4271,15 +4217,13 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%2790b7eca7-08e2-400f-96ea-1b46695de291%27&api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=principalId%20eq%20'1487575b-5326-49bc-b290-d0e30bd05463' response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:08.7410135Z","updatedOn":"2023-03-12T00:36:08.7410135Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"1487575b-5326-49bc-b290-d0e30bd05463","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:30.4287441Z","updatedOn":"2023-03-13T04:20:30.4287441Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' headers: cache-control: - no-cache @@ -4288,7 +4232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:43:51 GMT + - Mon, 13 Mar 2023 04:28:41 GMT expires: - '-1' pragma: @@ -4324,15 +4268,13 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"90b7eca7-08e2-400f-96ea-1b46695de291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:36:08.7410135Z","updatedOn":"2023-03-12T00:43:51.9042970Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"1487575b-5326-49bc-b290-d0e30bd05463","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:30.4287441Z","updatedOn":"2023-03-13T04:28:42.7496505Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -4341,7 +4283,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:43:53 GMT + - Mon, 13 Mar 2023 04:28:44 GMT expires: - '-1' pragma: @@ -4371,21 +4313,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdest","name":"yugangwdest","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-02-15T04:48:44.6372023Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-02-15T19:47:48.485789Z"},"identity":{"principalId":"f1643bce-f450-427d-ba3b-1d4777a4abd6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdest-b2b7fjbvdxdgb9hh.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgdzzbgt34ji7nufr6dtq5eo6ry67hnkx5brtwshnsj7eioqbi7z2volqk72kip7o/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '3609' + - '4590' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:43:54 GMT + - Mon, 13 Mar 2023 04:28:45 GMT expires: - '-1' pragma: @@ -4397,19 +4339,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 86b3bf76-860e-4237-b228-2a92bdfe3d4c - - 883a37f3-c6c1-43ec-8fcc-65a66646844f - - 54d69521-fe0b-4077-bec2-83fcbf3116cb - - 0b41625a-089d-4f1e-b63a-58abb0c58744 - - 5f27d112-b517-4de1-bcf5-e642e9389517 - - 7f5ec48d-c51b-4a89-bf94-4a616b711914 - - f5916094-1357-44f9-9d0e-d20de6156258 - - 8d0d803b-d662-4f9d-b331-e944f3cec1d7 - - ef68ff79-247b-4d68-ab92-5df4f3450980 - - 513f8253-52dd-4058-bd29-d080b1415407 - - 00aa2249-c310-4dc7-a666-5890b7788f0d - - c0c28d7f-3bd0-4eb5-9603-2fe2ee031def - - 1a375c3c-2965-4a0c-97c9-0eee94b38603 + - 1d672c2f-1e9f-4449-9a48-f90ee7708019 + - 9427e2bf-dfe0-4983-8813-e5fb52b8160d + - f4a4a6ee-f698-4d93-976c-5dd5b7a82abc + - ed23a1a9-8940-4e07-b664-3584e49b8072 + - df1aa5ea-95a1-42ca-bde4-013c51fabfc8 + - 423686fc-23cd-47ab-9ff2-091f0e13c04a + - 7c1e49fe-50ae-4810-8a7f-4893e901d44a + - f6403878-da0f-41a3-9ddf-558fb4103815 + - 92e192b7-65f6-4373-8d2f-81cc4050a88f + - d3d727a3-c3ef-4421-9410-254be595b9e5 + - 33aab1d8-3c2c-434a-b364-4801cf12ed3a + - 3f2cb9c1-5c27-4fc4-9e96-9a4af34373c5 + - 8344fbbb-57e5-40d5-8d85-470dfd061e1d status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml index 9bf8b508e3b..60203fd396d 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml @@ -18,31 +18,31 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.410051Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.3299407Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1155' + - '1157' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:04:58 GMT + - Mon, 13 Mar 2023 03:07:58 GMT etag: - - '"d8002717-0000-0600-0000-640d253a0000"' + - '"d9001ebd-0000-0600-0000-640e938e0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -54,7 +54,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -72,23 +72,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:04:58 GMT + - Mon, 13 Mar 2023 03:08:28 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -118,23 +118,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:05:28 GMT + - Mon, 13 Mar 2023 03:08:58 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -164,23 +164,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:05:58 GMT + - Mon, 13 Mar 2023 03:09:28 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -210,23 +210,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:06:28 GMT + - Mon, 13 Mar 2023 03:09:58 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -256,23 +256,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:06:59 GMT + - Mon, 13 Mar 2023 03:10:29 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -302,23 +302,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:07:29 GMT + - Mon, 13 Mar 2023 03:10:59 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -348,23 +348,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:07:58 GMT + - Mon, 13 Mar 2023 03:11:29 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -394,23 +394,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-12T01:04:58.427942Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' headers: cache-control: - no-cache content-length: - - '512' + - '513' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:08:29 GMT + - Mon, 13 Mar 2023 03:11:58 GMT etag: - - '"5f002d5d-0000-0600-0000-640d253a0000"' + - '"5f003e72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -440,23 +440,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","name":"99bd56b8-a275-413a-a695-d680793a7c3e*3D60B4D359A147BEB451288F3FCF46FBFAED34688C5448940D2143D4EB7DE22E","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2023-03-12T01:04:58.427942Z","endTime":"2023-03-12T01:08:51.3661097Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2023-03-13T03:07:58.3403988Z","endTime":"2023-03-13T03:12:16.3988924Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '583' + - '584' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:08:59 GMT + - Mon, 13 Mar 2023 03:12:28 GMT etag: - - '"5f00345d-0000-0600-0000-640d26230000"' + - '"5f004d72-0000-0600-0000-640e94900000"' expires: - '-1' pragma: @@ -486,23 +486,23 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.410051Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.3299407Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1074' + - '1076' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:08:59 GMT + - Mon, 13 Mar 2023 03:12:28 GMT etag: - - '"d8003117-0000-0600-0000-640d26230000"' + - '"d90054c0-0000-0600-0000-640e94900000"' expires: - '-1' pragma: @@ -569,19 +569,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sun, 12 Mar 2023 01:08:59 GMT + - Mon, 13 Mar 2023 03:12:29 GMT duration: - - '1546356' + - '945969' expires: - '-1' ocp-aad-diagnostics-server-name: - - xTd8xvTuq1dweLqP1AcL+kh8+62p8XdDmW5DTNMaMu8= + - fNJQLP+XgRrm+wVx1qc7dEY/m8VHKivWMsUXF78l0zo= ocp-aad-session-key: - - duHyUrLX-r2CkrffOiyU4chCKu-c7M4AIXGUTL_k0uiWovblGprsUGVG0bPnAioGgQ6bJ91nId1ZW5tERKuWtEOw4_8mWXtT3QmMM-WxUTOxINTPcEn9Wo6TBuJZyJZV.ldfJMAIQP0cP4jdwjFI5VSzlzbpPeXJD3mVG_rapqNk + - HrwqAY722rBQleTUlJGqqX2_YZCM0nOQnsujZqoMn_PPj8bYP4yKrekVGGXqYo1hw1KaokamtnmK2b_YvOdJYDoNVGE05eYUA3YTau01CGML89JiVffeI5u_t27kwkxP.t7tEVhBJik5uqkIHshgDFqaVluArMj0HfrOYhTONz50 pragma: - no-cache request-id: - - f30a9ba2-c691-48d4-a655-77bf589b9e2b + - a9e187e5-74c2-4553-9746-d9472c2dd993 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -609,12 +609,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in @@ -627,7 +625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:08:59 GMT + - Mon, 13 Mar 2023 03:12:29 GMT expires: - '-1' pragma: @@ -647,7 +645,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", - "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617", "principalType": "User"}}' headers: Accept: - application/json @@ -658,21 +656,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '258' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T01:09:01.2000375Z","updatedOn":"2023-03-12T01:09:01.6270248Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:30.8782200Z","updatedOn":"2023-03-13T03:12:31.2832276Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -681,7 +677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:03 GMT + - Mon, 13 Mar 2023 03:12:33 GMT expires: - '-1' pragma: @@ -711,12 +707,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can @@ -729,7 +723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:03 GMT + - Mon, 13 Mar 2023 03:12:33 GMT expires: - '-1' pragma: @@ -749,7 +743,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "88e2c501-898b-400c-9048-c37cb79e3781"}}' + "principalId": "eb979301-fad0-4919-9583-4cbfdb448d65", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -760,21 +754,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '270' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"88e2c501-898b-400c-9048-c37cb79e3781","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T01:09:04.0259494Z","updatedOn":"2023-03-12T01:09:04.4809582Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:34.2031745Z","updatedOn":"2023-03-13T03:12:34.6641861Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -783,7 +775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:06 GMT + - Mon, 13 Mar 2023 03:12:36 GMT expires: - '-1' pragma: @@ -813,23 +805,23 @@ interactions: ParameterSetName: - -g -n --api-key User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:04:57.410051Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.3299407Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1074' + - '1076' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:06 GMT + - Mon, 13 Mar 2023 03:12:36 GMT etag: - - '"d8003117-0000-0600-0000-640d26230000"' + - '"d90054c0-0000-0600-0000-640e94900000"' expires: - '-1' pragma: @@ -870,25 +862,25 @@ interactions: ParameterSetName: - -g -n --api-key User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:09:07.7330226Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3974818Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:07 GMT + - Mon, 13 Mar 2023 03:12:37 GMT etag: - - '"d8003317-0000-0600-0000-640d26340000"' + - '"d90056c0-0000-0600-0000-640e94a50000"' expires: - '-1' pragma: @@ -924,23 +916,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T01:04:57.410051Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T01:09:07.7330226Z"},"identity":{"principalId":"88e2c501-898b-400c-9048-c37cb79e3781","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3974818Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 01:09:08 GMT + - Mon, 13 Mar 2023 03:12:38 GMT etag: - - '"d8003317-0000-0600-0000-640d26340000"' + - '"d90056c0-0000-0600-0000-640e94a50000"' expires: - '-1' pragma: @@ -984,14 +976,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-mgD03URD1IyQL9cV8FdbLA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vD82fUwUWltQCcmV/Abegw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:11 GMT + - Mon, 13 Mar 2023 03:12:40 GMT expires: - '-1' pragma: @@ -999,7 +991,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583350.233.440.978251|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677160.429.440.880364|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1031,7 +1023,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":1,"name":"apikey1","key":"eyJrIjoiZUJuUlhybldDSzVrM3RLSVpsMTNOYldUbGNjNHlPdTciLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' + string: '{"id":1,"name":"apikey1","key":"eyJrIjoidEhkdGtwTEtTWFB1U3JBWUp1VzdORGlFa0JDUzJUOHUiLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1040,14 +1032,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-qxW14s48FFNz3Eqx+MWf+g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pHZN4i3ULA9zaaIjU3cNRA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:12 GMT + - Mon, 13 Mar 2023 03:12:42 GMT expires: - '-1' pragma: @@ -1055,7 +1047,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583353.032.436.166795|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677161.566.436.516517|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1087,7 +1079,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":2,"name":"apikey2","key":"eyJrIjoiWDVpUE4wNTVoYnlHUkFNakJpc1Q5c0FEbmI0aXZ2ZFUiLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' + string: '{"id":2,"name":"apikey2","key":"eyJrIjoiYTJWZGVUUndlTDl5d1BqbmtwN2hVdU9DVGswcGdQUFEiLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1096,14 +1088,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x4aw6AAKtObkSTgb8FEdlw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xH2OuWYzCTLzVyRSFxSf9A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:12 GMT + - Mon, 13 Mar 2023 03:12:42 GMT expires: - '-1' pragma: @@ -1111,8 +1103,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583353.872.442.86451|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678677163.539.442.814131|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1141,7 +1133,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-15T01:09:12Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-13T01:09:12Z"}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-16T03:12:42Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-14T03:12:42Z"}]' headers: cache-control: - no-cache @@ -1150,14 +1142,14 @@ interactions: content-length: - '156' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TpFUvIpumh02CeZ9EKHukQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ox7GgxJfWyRaqIOJjDEqWA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:13 GMT + - Mon, 13 Mar 2023 03:12:42 GMT expires: - '-1' pragma: @@ -1165,7 +1157,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583354.186.440.292147|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677163.895.440.915114|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1195,7 +1187,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-15T01:09:12Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-13T01:09:12Z"}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-16T03:12:42Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-14T03:12:42Z"}]' headers: cache-control: - no-cache @@ -1204,14 +1196,14 @@ interactions: content-length: - '156' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VBUf52qIE+1Soh1CTCdOPw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-0IQtAs836/ylFfK+ARr3HQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:13 GMT + - Mon, 13 Mar 2023 03:12:43 GMT expires: - '-1' pragma: @@ -1219,8 +1211,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583354.506.442.336435|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678677164.22.441.732838|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1260,14 +1252,14 @@ interactions: content-length: - '29' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VjYiI1qpI7kryZCyMueIUw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5szfhlYDBZXOhi9hhDOMUQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:13 GMT + - Mon, 13 Mar 2023 03:12:43 GMT expires: - '-1' pragma: @@ -1275,7 +1267,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583354.683.442.876507|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677164.442.442.952072|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1305,50 +1297,50 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":18,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":2,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6naEwcp7z","title":"Outgoing + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6naEwcp7z","title":"Outgoing Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-uIz5LdfQj9cxBy5Ov1gJQw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yIupLp2sVwhea1SwQcy8fw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:14 GMT + - Mon, 13 Mar 2023 03:12:43 GMT expires: - '-1' pragma: @@ -1356,8 +1348,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583354.961.435.34460|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678677164.755.440.281067|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -1397,14 +1389,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pr0+sjgznIvqRPonZQxbPQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gMQ5GGO26sg2B/Y5H4796w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 01:09:14 GMT + - Mon, 13 Mar 2023 03:12:44 GMT expires: - '-1' pragma: @@ -1412,7 +1404,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678583355.275.442.432907|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677164.958.439.139670|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains diff --git a/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml index a3ebbe1c1ea..87be1f4ec37 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml @@ -18,17 +18,17 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:19.0904692Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.2444753Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:30:20 GMT + - Mon, 13 Mar 2023 03:07:58 GMT etag: - - '"d8005d10-0000-0600-0000-640d1d1d0000"' + - '"d9001fbd-0000-0600-0000-640e938e0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -72,12 +72,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:30:20 GMT + - Mon, 13 Mar 2023 03:08:28 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -118,12 +118,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:30:51 GMT + - Mon, 13 Mar 2023 03:08:58 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -164,12 +164,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:31:21 GMT + - Mon, 13 Mar 2023 03:09:28 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -210,12 +210,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:31:50 GMT + - Mon, 13 Mar 2023 03:09:59 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -256,12 +256,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:32:20 GMT + - Mon, 13 Mar 2023 03:10:29 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -302,12 +302,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:32:51 GMT + - Mon, 13 Mar 2023 03:10:59 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -348,12 +348,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:33:21 GMT + - Mon, 13 Mar 2023 03:11:28 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -394,12 +394,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' headers: cache-control: - no-cache @@ -408,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:33:50 GMT + - Mon, 13 Mar 2023 03:11:58 GMT etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' + - '"5f003f72-0000-0600-0000-640e938e0000"' expires: - '-1' pragma: @@ -440,104 +440,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' - headers: - cache-control: - - no-cache - content-length: - - '518' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 00:34:21 GMT - etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-12T00:30:20.4274825Z"}' - headers: - cache-control: - - no-cache - content-length: - - '518' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 12 Mar 2023 00:34:51 GMT - etag: - - '"5f00a55c-0000-0600-0000-640d1d1c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","name":"8a07176c-e136-4b45-8fc8-56472f2c88b1*4D8CAF87383C36FFF26C41C5F0A0A47CE694A624ACE243675ED56106893FC36F","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Succeeded","startTime":"2023-03-12T00:30:20.4274825Z","endTime":"2023-03-12T00:35:02.7401085Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Succeeded","startTime":"2023-03-13T03:07:58.4131039Z","endTime":"2023-03-13T03:12:11.7756626Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -546,9 +454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:21 GMT + - Mon, 13 Mar 2023 03:12:29 GMT etag: - - '"5f00bf5c-0000-0600-0000-640d1e360000"' + - '"5f004c72-0000-0600-0000-640e948b0000"' expires: - '-1' pragma: @@ -578,12 +486,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:19.0904692Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.2444753Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -592,9 +500,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:21 GMT + - Mon, 13 Mar 2023 03:12:29 GMT etag: - - '"d8007110-0000-0600-0000-640d1e360000"' + - '"d90052c0-0000-0600-0000-640e948b0000"' expires: - '-1' pragma: @@ -661,19 +569,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sun, 12 Mar 2023 00:35:22 GMT + - Mon, 13 Mar 2023 03:12:29 GMT duration: - - '1596443' + - '970996' expires: - '-1' ocp-aad-diagnostics-server-name: - - gYXL8Ys0yBAU65H1cShNFgrwPnZJdfXxE+opePIaGk0= + - Sw9P2+QqQbSqlfnbi4jt/jyPRHaSpgfKprX26GOn7EE= ocp-aad-session-key: - - Ye4MkAD0v5sA-xlgd-H8a5w9FIWBPvnVtczBjcFnuZBvJyjI-mgUQwF20ZmbxyfAr10GiagMrA8JhRKvYw9ffnHiVMnybuC01IdHgCBX4BX4AqOKBWatkUSoCf4WvbmF.Hcg9KJ-f_FqEsrQCDHU2ZMYDNr1hKBOOMesXOtvNPVc + - 9s7ED5-btx2d-y-DGy7BiRx1NAVmQeuMKTauYwdhQVAXDFpa5r5_dsRKH1vckkSmGsTieIJfbD1wirypKQ8z15eWV3s39h5VGcQHebIAPeof3h7X-ehR9EvzKBkB6EQT.bSF-r0RdYz36h-BLDMYvyMjx14bDwS2p7DcmpoTi90k pragma: - no-cache request-id: - - 29d297ba-53a6-44d3-bc16-eb278c861d57 + - 6346f14a-897f-47b7-80f0-6afcc853c516 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -701,12 +609,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Grafana%20Admin%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Grafana Admin","type":"BuiltInRole","description":"Built-in @@ -719,7 +625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:22 GMT + - Mon, 13 Mar 2023 03:12:30 GMT expires: - '-1' pragma: @@ -739,7 +645,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41", - "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617"}}' + "principalId": "a30db067-cde1-49be-95bb-9619a8cc8617", "principalType": "User"}}' headers: Accept: - application/json @@ -750,21 +656,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '258' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:35:23.2612560Z","updatedOn":"2023-03-12T00:35:23.6922653Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:30.9600656Z","updatedOn":"2023-03-13T03:12:31.4000700Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -773,7 +677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:25 GMT + - Mon, 13 Mar 2023 03:12:33 GMT expires: - '-1' pragma: @@ -803,12 +707,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Reader%27&api-version=2022-04-01 response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Reader","type":"BuiltInRole","description":"Can @@ -821,7 +723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:25 GMT + - Mon, 13 Mar 2023 03:12:33 GMT expires: - '-1' pragma: @@ -841,7 +743,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "e6a19e20-784f-4ad8-8322-9d7409f2bc88"}}' + "principalId": "d374e3a1-e5ef-493d-8df5-9982028c35f0", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -852,21 +754,19 @@ interactions: Connection: - keep-alive Content-Length: - - '233' + - '270' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n -l User-Agent: - - python/3.8.8 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 - Azure-SDK-For-Python AZURECLI/2.43.0 (MSI) - accept-language: - - en-US + - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 + (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-12T00:35:26.3393255Z","updatedOn":"2023-03-12T00:35:26.7783375Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:33.9428483Z","updatedOn":"2023-03-13T03:12:34.3616451Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -875,7 +775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:28 GMT + - Mon, 13 Mar 2023 03:12:35 GMT expires: - '-1' pragma: @@ -905,12 +805,12 @@ interactions: ParameterSetName: - -g -n --service-account User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:30:19.0904692Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.2444753Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -919,9 +819,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:29 GMT + - Mon, 13 Mar 2023 03:12:36 GMT etag: - - '"d8007110-0000-0600-0000-640d1e360000"' + - '"d90052c0-0000-0600-0000-640e948b0000"' expires: - '-1' pragma: @@ -962,12 +862,12 @@ interactions: ParameterSetName: - -g -n --service-account User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3634342Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview @@ -978,9 +878,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:30 GMT + - Mon, 13 Mar 2023 03:12:38 GMT etag: - - '"d8007410-0000-0600-0000-640d1e520000"' + - '"d90055c0-0000-0600-0000-640e94a50000"' expires: - '-1' pragma: @@ -1016,12 +916,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.43.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T00:30:19.0904692Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T00:35:29.6718135Z"},"identity":{"principalId":"e6a19e20-784f-4ad8-8322-9d7409f2bc88","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3634342Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -1030,9 +930,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 12 Mar 2023 00:35:30 GMT + - Mon, 13 Mar 2023 03:12:38 GMT etag: - - '"d8007410-0000-0600-0000-640d1e520000"' + - '"d90055c0-0000-0600-0000-640e94a50000"' expires: - '-1' pragma: @@ -1076,14 +976,14 @@ interactions: content-length: - '61' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xa/4lGbmMHZ6WeTkVoddBw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-oNFH7DyJ5q9y6DT1Qql9Og';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:33 GMT + - Mon, 13 Mar 2023 03:12:41 GMT expires: - '-1' pragma: @@ -1091,8 +991,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581332.746.441.25032|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678677160.524.442.465772|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1132,14 +1032,14 @@ interactions: content-length: - '117' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YJgcmahkuLvdRONTy56Dxw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x5pW6scOq7N7ZoETSCnnrQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:34 GMT + - Mon, 13 Mar 2023 03:12:42 GMT expires: - '-1' pragma: @@ -1147,8 +1047,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581335.089.436.68301|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678677162.957.441.507948|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1186,14 +1086,14 @@ interactions: content-length: - '217' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VxlY5RpKxG6n7KbeF/X0nQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9z7FnQKMwn/RbwHQPdxZUw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:34 GMT + - Mon, 13 Mar 2023 03:12:42 GMT expires: - '-1' pragma: @@ -1201,7 +1101,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581335.898.441.824111|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677163.538.438.581668|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1233,7 +1133,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 response: body: - string: '{"id":3,"message":"Service account updated","name":"myServiceAccount","serviceaccount":{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-12T00:35:34Z","updatedAt":"2023-03-12T00:35:34Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}}' + string: '{"id":3,"message":"Service account updated","name":"myServiceAccount","serviceaccount":{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-13T03:12:42Z","updatedAt":"2023-03-13T03:12:42Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}}' headers: cache-control: - no-cache @@ -1242,14 +1142,14 @@ interactions: content-length: - '325' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-z3Ba8OaqS6Q6KanWov/pVw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VcO0rROBs7kuTd7057WxOw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:35 GMT + - Mon, 13 Mar 2023 03:12:42 GMT expires: - '-1' pragma: @@ -1257,7 +1157,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581336.088.442.738119|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677163.765.439.976540|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1296,14 +1196,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-JD2PpQvYmawnsjf7NL7+hA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9RiXZD/J5/Pa4cF4DILGWQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:35 GMT + - Mon, 13 Mar 2023 03:12:43 GMT expires: - '-1' pragma: @@ -1311,7 +1211,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581336.453.437.528948|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677164.078.438.813526|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1341,7 +1241,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 response: body: - string: '{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-12T00:35:34Z","updatedAt":"2023-03-12T00:35:35Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}' + string: '{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-13T03:12:42Z","updatedAt":"2023-03-13T03:12:42Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}' headers: cache-control: - no-cache @@ -1350,14 +1250,14 @@ interactions: content-length: - '237' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-c7vb/rJt07F4K7EPrPABug';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OqwB43y7DxK9mlchUNN1Tg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:35 GMT + - Mon, 13 Mar 2023 03:12:43 GMT expires: - '-1' pragma: @@ -1365,7 +1265,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581336.634.441.148642|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677164.643.441.656593|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1404,14 +1304,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3W/EPAZqfJcadqlof/qlgA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hJn8nnXJtZMsCDTXLG3HGw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:35 GMT + - Mon, 13 Mar 2023 03:12:43 GMT expires: - '-1' pragma: @@ -1419,7 +1319,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581336.918.443.280749|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677164.939.438.655657|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1458,14 +1358,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x5i6za9+v1ST1JXoPF4RjQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-e2+u8vYD04sdc6YzVJffFQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:36 GMT + - Mon, 13 Mar 2023 03:12:44 GMT expires: - '-1' pragma: @@ -1473,7 +1373,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581337.199.436.795493|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677165.226.441.466492|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1505,7 +1405,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '{"id":1,"name":"myToken","key":"glsa_FXOr2I6h7HnxvzVpcpW5PJslAswJ8rBH_b07d6101"}' + string: '{"id":1,"name":"myToken","key":"glsa_hkISw5eoobGQpAXMe9CokO0begIBI0tm_5dbbd742"}' headers: cache-control: - no-cache @@ -1514,14 +1414,14 @@ interactions: content-length: - '80' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xGKoR6wPrvLoT84hkYF3fg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XZ3hxxpzK10qrYG1tVduww';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:36 GMT + - Mon, 13 Mar 2023 03:12:44 GMT expires: - '-1' pragma: @@ -1529,7 +1429,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581337.359.443.457233|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677165.448.439.570961|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1568,14 +1468,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Qd3SggJtU1sQV/g95pACKg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-amKn2B6SV8Xh/vB2HHwJYg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:37 GMT + - Mon, 13 Mar 2023 03:12:44 GMT expires: - '-1' pragma: @@ -1583,8 +1483,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581338.059.436.969686|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678677165.811.438.60273|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1613,7 +1513,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '[{"id":1,"name":"myToken","created":"2023-03-12T00:35:36Z","lastUsedAt":null,"expiration":"2023-03-13T00:35:36Z","secondsUntilExpiration":86398.735069766,"hasExpired":false,"isRevoked":false}]' + string: '[{"id":1,"name":"myToken","created":"2023-03-13T03:12:44Z","lastUsedAt":null,"expiration":"2023-03-14T03:12:44Z","secondsUntilExpiration":86398.945803913,"hasExpired":false,"isRevoked":false}]' headers: cache-control: - no-cache @@ -1622,14 +1522,14 @@ interactions: content-length: - '192' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bzaHbGPnOaYX5cWF67br7Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-paNKeeFXzPBhHvlGoVkysg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:37 GMT + - Mon, 13 Mar 2023 03:12:45 GMT expires: - '-1' pragma: @@ -1637,7 +1537,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581338.246.442.325380|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677166.035.442.544534|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1667,50 +1567,50 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":14,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":17,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":23,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":15,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ohlmx07YSS3ffLzofb2QYQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VM4N6ScAd/nYqlHGcwBHlw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:37 GMT + - Mon, 13 Mar 2023 03:12:45 GMT expires: - '-1' pragma: @@ -1718,7 +1618,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581338.529.442.891856|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677166.328.443.333987|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1759,14 +1659,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WjYbDZgg2QzBomoJy+Zv+Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-udT0v6KWOX4Wfg6yr4Ebsw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:37 GMT + - Mon, 13 Mar 2023 03:12:45 GMT expires: - '-1' pragma: @@ -1774,7 +1674,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581338.747.438.612413|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677166.625.441.557434|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1813,14 +1713,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-A5DS2kzh8hK1CoNBiXPcdQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-POmdV42mg+ypQosenENbSA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:38 GMT + - Mon, 13 Mar 2023 03:12:45 GMT expires: - '-1' pragma: @@ -1828,7 +1728,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581339.063.442.516750|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677166.953.435.989170|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1867,14 +1767,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-isABSAmkqeD3La7jAlHhfw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1F3QJ7R1U7R+O8fAQXuugQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:38 GMT + - Mon, 13 Mar 2023 03:12:46 GMT expires: - '-1' pragma: @@ -1882,8 +1782,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581339.25.436.714110|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678677167.142.439.747108|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1912,7 +1812,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '[{"id":1,"name":"myToken","created":"2023-03-12T00:35:36Z","lastUsedAt":"2023-03-12T00:35:37Z","expiration":"2023-03-13T00:35:36Z","secondsUntilExpiration":86397.543784266,"hasExpired":false,"isRevoked":false}]' + string: '[{"id":1,"name":"myToken","created":"2023-03-13T03:12:44Z","lastUsedAt":"2023-03-13T03:12:45Z","expiration":"2023-03-14T03:12:44Z","secondsUntilExpiration":86397.649161125,"hasExpired":false,"isRevoked":false}]' headers: cache-control: - no-cache @@ -1921,14 +1821,14 @@ interactions: content-length: - '210' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1+Xb+UadL8XarXIvo2Y94w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sWfJC+DyILnoerVAJv2jrQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:38 GMT + - Mon, 13 Mar 2023 03:12:46 GMT expires: - '-1' pragma: @@ -1936,8 +1836,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581339.434.441.769892|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678677167.33.442.396107|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1977,14 +1877,14 @@ interactions: content-length: - '43' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-e+YswBZ7P1CyRsLpZZuMVA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-BWysOtdVatIGcZor54ASSQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:38 GMT + - Mon, 13 Mar 2023 03:12:46 GMT expires: - '-1' pragma: @@ -1992,7 +1892,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581339.614.442.701352|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677167.555.437.781335|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2031,14 +1931,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-y3bgbonOgya0wOgFHJJGhA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-BSYXL/6GJ5WdHxCCcbQrPQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:38 GMT + - Mon, 13 Mar 2023 03:12:46 GMT expires: - '-1' pragma: @@ -2046,7 +1946,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581339.896.435.281316|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677167.897.442.646061|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2085,14 +1985,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rLDYrycutsP2DWXbB/xC/Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YZ1pyMGpD45d8bqTNne12w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:39 GMT + - Mon, 13 Mar 2023 03:12:47 GMT expires: - '-1' pragma: @@ -2100,7 +2000,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581340.088.442.187447|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677168.081.442.678870|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2139,14 +2039,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ohyxZr9WNkadI6+cTlqaXg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3sb67orv71srLjRuEMyR1Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:39 GMT + - Mon, 13 Mar 2023 03:12:47 GMT expires: - '-1' pragma: @@ -2154,7 +2054,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581340.383.442.279|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678677168.36.437.341242|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2195,14 +2095,14 @@ interactions: content-length: - '37' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VR3USHvx+f2XTR2QZCdsqQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8y2waa2rV/rism9J2EBvWA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Sun, 12 Mar 2023 00:35:39 GMT + - Mon, 13 Mar 2023 03:12:47 GMT expires: - '-1' pragma: @@ -2210,7 +2110,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678581340.579.437.693061|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678677168.544.441.357180|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index 8068c7b17df..c9f97667289 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -307,7 +307,7 @@ def test_amg_backup_restore(self, resource_group): amg1 = self.cmd('grafana create -g {rg} -n {name} -l {location}').get_output_in_json() amg2 = self.cmd('grafana create -g {rg} -n {name2} -l {location}').get_output_in_json() # Ensure RBAC changes are propagated - time.sleep(15) + time.sleep(120) # set up folder self.kwargs.update({ diff --git a/src/amg/azext_amg/vendored_sdks/_serialization.py b/src/amg/azext_amg/vendored_sdks/_serialization.py index f17c068e833..39e0c139c8e 100644 --- a/src/amg/azext_amg/vendored_sdks/_serialization.py +++ b/src/amg/azext_amg/vendored_sdks/_serialization.py @@ -170,20 +170,24 @@ def deserialize_from_http_generics(cls, body_bytes: Optional[Union[AnyStr, IO]], return None -try: - basestring # type: ignore - unicode_str = unicode # type: ignore -except NameError: - basestring = str - unicode_str = str +#try: +# basestring # type: ignore +# unicode_str = unicode # type: ignore +#except NameError: +# basestring = str +# unicode_str = str + +basestring = str +unicode_str = str _LOGGER = logging.getLogger(__name__) -try: - _long_type = long # type: ignore -except NameError: - _long_type = int +#try: +# _long_type = long # type: ignore +#except NameError: +# _long_type = int +_long_type = int class UTC(datetime.tzinfo): """Time Zone info for handling UTC""" From e8876475abf548307f3551405f4d4968f04f259b Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 12 Mar 2023 21:32:45 -0700 Subject: [PATCH 12/19] revert local hack --- .../azext_amg/vendored_sdks/_serialization.py | 24 ++++++++----------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/src/amg/azext_amg/vendored_sdks/_serialization.py b/src/amg/azext_amg/vendored_sdks/_serialization.py index 39e0c139c8e..f17c068e833 100644 --- a/src/amg/azext_amg/vendored_sdks/_serialization.py +++ b/src/amg/azext_amg/vendored_sdks/_serialization.py @@ -170,24 +170,20 @@ def deserialize_from_http_generics(cls, body_bytes: Optional[Union[AnyStr, IO]], return None -#try: -# basestring # type: ignore -# unicode_str = unicode # type: ignore -#except NameError: -# basestring = str -# unicode_str = str - -basestring = str -unicode_str = str +try: + basestring # type: ignore + unicode_str = unicode # type: ignore +except NameError: + basestring = str + unicode_str = str _LOGGER = logging.getLogger(__name__) +try: + _long_type = long # type: ignore +except NameError: + _long_type = int -#try: -# _long_type = long # type: ignore -#except NameError: -# _long_type = int -_long_type = int class UTC(datetime.tzinfo): """Time Zone info for handling UTC""" From 55bb3e516b85c2366f324cfa730c1afc025b507e Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 12 Mar 2023 22:20:25 -0700 Subject: [PATCH 13/19] update recording --- .../tests/latest/recordings/test_amg_e2e.yaml | 1004 ++++++++--------- .../tests/latest/test_amg_scenario.py | 2 +- 2 files changed, 459 insertions(+), 547 deletions(-) diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml index c1959d69943..bb8673e388e 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml @@ -20,29 +20,29 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1146' + - '1155' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:14:51 GMT + - Mon, 13 Mar 2023 05:02:07 GMT etag: - - '"640041d6-0000-0d00-0000-640ea33a0000"' + - '"6500fe20-0000-0d00-0000-640eae4f0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -74,21 +74,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:15:20 GMT + - Mon, 13 Mar 2023 05:02:38 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -120,21 +120,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:15:51 GMT + - Mon, 13 Mar 2023 05:03:08 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -166,21 +166,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:16:21 GMT + - Mon, 13 Mar 2023 05:03:38 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -212,21 +212,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:16:51 GMT + - Mon, 13 Mar 2023 05:04:09 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -258,21 +258,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:17:21 GMT + - Mon, 13 Mar 2023 05:04:39 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -304,21 +304,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:17:52 GMT + - Mon, 13 Mar 2023 05:05:09 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -350,21 +350,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:22 GMT + - Mon, 13 Mar 2023 05:05:39 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -396,21 +396,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:52 GMT + - Mon, 13 Mar 2023 05:06:09 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -442,21 +442,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' headers: cache-control: - no-cache content-length: - - '503' + - '506' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:19:22 GMT + - Mon, 13 Mar 2023 05:06:39 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"44001614-0000-0d00-0000-640eae4e0000"' expires: - '-1' pragma: @@ -488,21 +488,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:49.976251Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Succeeded","startTime":"2023-03-13T05:02:06.182638Z","endTime":"2023-03-13T05:06:52.9241692Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '503' + - '577' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:19:52 GMT + - Mon, 13 Mar 2023 05:07:10 GMT etag: - - '"43008bdf-0000-0d00-0000-640ea3390000"' + - '"4400c319-0000-0d00-0000-640eaf6c0000"' expires: - '-1' pragma: @@ -534,67 +534,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"a5dbba5a-5f46-473c-aef2-a923e62ff8ff*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-13T04:14:49.976251Z","endTime":"2023-03-13T04:20:16.684244Z","error":{},"properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '573' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:24 GMT + - Mon, 13 Mar 2023 05:07:11 GMT etag: - - '"4300c5e4-0000-0d00-0000-640ea4800000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --tags - User-Agent: - - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' - headers: - cache-control: - - no-cache - content-length: - - '1065' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 04:20:25 GMT - etag: - - '"640010df-0000-0d00-0000-640ea4800000"' + - '"6500b728-0000-0d00-0000-640eaf6c0000"' expires: - '-1' pragma: @@ -661,19 +615,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 13 Mar 2023 04:20:25 GMT + - Mon, 13 Mar 2023 05:07:11 GMT duration: - - '1059895' + - '2794051' expires: - '-1' ocp-aad-diagnostics-server-name: - - xTd8xvTuq1dweLqP1AcL+kh8+62p8XdDmW5DTNMaMu8= + - Zryn/nJhmx33/ODaCN+uiYD6e4W/jenH2OAdKcQ9HmQ= ocp-aad-session-key: - - jSF1SZ6ZIT_9qQK7TBXL7TpSDsWljXy8SGRjWR8uUyiAzUPzBkmOqQHteDE9_xU0g8vcihqSQVwkZWiXPaw_IyJG1EC4nqls5E0Y2Smak6ilBrGMECB-bceBfKrzQHtt._25ykHsegsevWHQTvfnVzdcUL10NHLj1q1dnYtu4izU + - bsAbUO6QZJpDFvBRXfj11v-Q7cW35QLCySo0meFtuBlcuxk1xqt9ynxRa76XccIBXWft3-wCAoR1-PDm9H4If05zKuUT0Qsmy3KX1_JLKcIDNg-mlb7-0C7HrvUmtoQ1.XWjKKeowVy8sxaEJHY7nmKFWAZci0racQHVi-Ci0yg8 pragma: - no-cache request-id: - - 0ade08c4-a0a3-4fe1-968c-6cb38bfd80b6 + - 6a039e15-6869-4596-af76-4aa3d66712f4 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -717,7 +671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:25 GMT + - Mon, 13 Mar 2023 05:07:11 GMT expires: - '-1' pragma: @@ -757,19 +711,19 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:26.6847037Z","updatedOn":"2023-03-13T04:20:27.1057107Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:13.4802479Z","updatedOn":"2023-03-13T05:07:13.9542551Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache content-length: - - '977' + - '983' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:28 GMT + - Mon, 13 Mar 2023 05:07:14 GMT expires: - '-1' pragma: @@ -815,7 +769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:29 GMT + - Mon, 13 Mar 2023 05:07:15 GMT expires: - '-1' pragma: @@ -835,7 +789,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "1487575b-5326-49bc-b290-d0e30bd05463", "principalType": "ServicePrincipal"}}' + "principalId": "2402dc06-39df-4d3d-a3a2-bf407882db2a", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -858,7 +812,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"1487575b-5326-49bc-b290-d0e30bd05463","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:29.7657404Z","updatedOn":"2023-03-13T04:20:30.1547430Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:16.1316699Z","updatedOn":"2023-03-13T05:07:16.5736704Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -867,7 +821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:31 GMT + - Mon, 13 Mar 2023 05:07:17 GMT expires: - '-1' pragma: @@ -902,16 +856,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '1077' + - '1086' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:32 GMT + - Mon, 13 Mar 2023 05:07:18 GMT expires: - '-1' pragma: @@ -923,19 +877,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - ed945e13-1e19-4c63-a547-191a55831a55 - - 300e8bc1-7ce3-49cd-add7-b03386c3c1fa - - b68b1fcd-36ba-4640-944e-47756d9f9676 - - 7293b7ed-de40-403c-9d66-f62a48545bc7 - - bec83997-75f6-4150-b7d4-45d01475d1d9 - - 14a9bf8b-4e2d-47d1-82c5-199de9012e0c - - 40d7eaee-710b-4a7f-9a51-73ce3fd31704 - - 4855c136-4fcc-44de-b4aa-489b00f3905a - - 382efde7-2415-4777-81dd-69dd6e7437bb - - 6235c972-b0a7-4cc5-9c95-89bb26a38d10 - - 2ab004f2-77f7-4510-8627-f675fd51fc83 - - 6a5eec3f-7d37-4fe5-83e0-ae7598497523 - - c0030ceb-619a-4f60-aff5-9e156826099a + - 298f893a-0659-4dd8-9a2f-602231a3fc3c + - 48a64665-b3b5-49fc-9d44-203f3312a728 + - 5b6a6672-9379-4def-909f-d97c6f33527e + - 31f8825f-b6d6-40f7-a20d-baa9d744e87a + - 5895d232-ff26-4994-bb37-c10fe31065ce + - 66b97f5c-dceb-4844-9351-181c44390b48 + - 5583feb9-09b4-47b6-ab6f-a05e5509eb41 + - c6ab7746-6973-447e-be5f-b2664112aaf8 + - e8911341-2e13-44fb-84d0-dee332a22bbf + - fa5308f8-39f0-47e8-985a-94f00f7c3236 + - e40d7925-55c6-451f-960d-c02853249612 + - bf4092bd-654a-40c8-be38-75eff81823b5 + - f0319f4c-f3e9-4ec5-8513-d4ba11125837 status: code: 200 message: OK @@ -956,16 +910,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '5739' + - '3432' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:33 GMT + - Mon, 13 Mar 2023 05:07:20 GMT expires: - '-1' pragma: @@ -977,19 +931,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 63098f76-648b-4c6b-9e14-dca5009ce9d3 - - 66142029-69eb-421e-aa08-538308004604 - - 33e1b9b3-fd70-4872-9374-63381e72fab9 - - 768d9075-dc49-40b7-bc5b-30ae1290e3c3 - - adcd53cc-1bf6-4c33-98fd-212790982e48 - - d0310ed0-a45e-4901-a94c-8eacf5aaf878 - - f6703528-f895-4429-b241-24be698cf91d - - 6fee50a7-dc25-4964-b89e-ad4aa8f35b83 - - fd8ddf27-73c0-485f-a12b-54576a38fcd8 - - d80e2e13-c13c-4af0-9f91-3426a5e3eaf6 - - ea1c6a41-e90e-495e-9bf7-2628652062ec - - dca433cb-6130-476e-b34d-a67fd4e9802c - - 2cb2e0e8-830e-4ec3-a252-ac8d9462f4ac + - d1ab19ed-20a8-4303-a39d-e56ea2d6dcbc + - 82bc98a4-6f59-4bd2-9c07-83395fad0a61 + - 486f36dd-b0a7-45c6-acec-e22d2fbf1764 + - 3dd768c6-5332-4ed6-a8df-43d4b82840ae + - ff6e2dbf-ecdb-4b99-93df-ecb947b66b07 + - db9b2c30-4fd5-495a-9176-34ff7eb4199d + - 60917e13-eefc-41ba-9bda-5ec09bc412a4 + - 17628fb7-8567-44b1-bae1-f085389783b6 + - 828d84ed-72b9-4ecc-9f17-8c2ccee21779 + - b756a9d1-1248-45bd-9403-916ff6cb0be0 + - 40722fc3-2b8a-4518-a8a1-70bb7c717452 + - aa1b9169-f9f2-469e-a2f2-b4002bdc329a + - d0d3d3a9-819d-4d18-a5c4-7539ceca3161 status: code: 200 message: OK @@ -1009,21 +963,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1065' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:36 GMT + - Mon, 13 Mar 2023 05:07:23 GMT etag: - - '"640010df-0000-0d00-0000-640ea4800000"' + - '"6500b728-0000-0d00-0000-640eaf6c0000"' expires: - '-1' pragma: @@ -1057,21 +1011,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1065' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:37 GMT + - Mon, 13 Mar 2023 05:07:25 GMT etag: - - '"640010df-0000-0d00-0000-640ea4800000"' + - '"6500b728-0000-0d00-0000-640eaf6c0000"' expires: - '-1' pragma: @@ -1103,10 +1057,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/org/users + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/org/users response: body: - string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-03-13T04:20:39Z","lastSeenAtAge":"\u003c + string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-03-13T05:07:28Z","lastSeenAtAge":"\u003c 1 minute","isDisabled":false}]' headers: cache-control: @@ -1116,14 +1070,14 @@ interactions: content-length: - '272' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2IH81x8OAMXR3UAznz19cw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3ioleCmYoWqz2GkO2ui23A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:39 GMT + - Mon, 13 Mar 2023 05:07:28 GMT expires: - '-1' pragma: @@ -1131,7 +1085,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681239.543.28.418613|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684047.344.27.355764|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1158,11 +1112,11 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/user + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/user response: body: string: '{"id":2,"email":"example@example.com","name":"example@example.com","login":"example@example.com","theme":"","orgId":1,"isGrafanaAdmin":false,"isDisabled":false,"isExternal":true,"authLabels":["Auth - Proxy"],"updatedAt":"2023-03-13T04:20:38Z","createdAt":"2023-03-13T04:20:38Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' + Proxy"],"updatedAt":"2023-03-13T05:07:27Z","createdAt":"2023-03-13T05:07:27Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' headers: cache-control: - no-cache @@ -1171,14 +1125,14 @@ interactions: content-length: - '331' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WDrU/jBc61CyFGMVg0Jl5g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5BLXaE5q5rLEIH/hEOe4GA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:39 GMT + - Mon, 13 Mar 2023 05:07:28 GMT expires: - '-1' pragma: @@ -1186,7 +1140,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681240.715.30.4491|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684049.685.30.728918|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1215,26 +1169,26 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '{"id":24,"uid":"0RV2KoaVk","title":"Test Folder","url":"/dashboards/f/0RV2KoaVk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:20:40.5964421Z","updatedBy":"example@example.com","updated":"2023-03-13T04:20:40.5964422Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"yhCZhoa4z","title":"Test Folder","url":"/dashboards/f/yhCZhoa4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T05:07:29.882477459Z","updatedBy":"example@example.com","updated":"2023-03-13T05:07:29.882477559Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '348' + - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gtBhf0z2hUoXZFTM0E8iZA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8gEK9EFMvc3RQeuzhfZeSg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:40 GMT + - Mon, 13 Mar 2023 05:07:29 GMT expires: - '-1' pragma: @@ -1242,7 +1196,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681241.383.30.730018|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684050.528.29.136064|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1269,10 +1223,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"d920205c4aab3ef81b10d95baf891d32"}' + string: '{"message":"id is invalid","traceID":"7098630e988324475a34542c9fb270a6"}' headers: cache-control: - no-cache @@ -1281,14 +1235,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xYvYfDO8SfXP0gvWspO70Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lOxpXIWCgkdfNCgFsyl23g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:41 GMT + - Mon, 13 Mar 2023 05:07:30 GMT expires: - '-1' pragma: @@ -1296,7 +1250,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681242.282.28.556490|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684051.545.28.707208|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1323,7 +1277,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/Test%20Folder + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/Test%20Folder response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -1335,14 +1289,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ln2JxV3rhqMl/YHSZ1Sm4A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lJpCPCUx1oAKyLRd8xIpKw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:42 GMT + - Mon, 13 Mar 2023 05:07:31 GMT expires: - '-1' pragma: @@ -1350,7 +1304,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681242.836.30.255477|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684052.121.30.241635|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1377,10 +1331,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"0RV2KoaVk","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"yhCZhoa4z","title":"Test Folder"}]' headers: cache-control: @@ -1390,14 +1344,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F8ShHHapw4Edt82M/bu5kQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pF+yMKIXrawpucbRN7dAGg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:42 GMT + - Mon, 13 Mar 2023 05:07:31 GMT expires: - '-1' pragma: @@ -1405,7 +1359,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681243.525.31.828312|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684052.662.32.716787|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1432,10 +1386,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/0RV2KoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/id/yhCZhoa4z response: body: - string: '{"message":"id is invalid","traceID":"29a592055cce6f33918dff6dd2e97861"}' + string: '{"message":"id is invalid","traceID":"1b1f627f754a086df05a5ad69c9884ca"}' headers: cache-control: - no-cache @@ -1444,14 +1398,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TdmkN0ETctbsEM46ULLSag';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dwtPqmkyTN+kTK41OMZoIA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:43 GMT + - Mon, 13 Mar 2023 05:07:32 GMT expires: - '-1' pragma: @@ -1459,7 +1413,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681244.198.29.894991|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684053.313.27.328862|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1486,10 +1440,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/0RV2KoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/yhCZhoa4z response: body: - string: '{"id":24,"uid":"0RV2KoaVk","title":"Test Folder","url":"/dashboards/f/0RV2KoaVk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:20:40Z","updatedBy":"example@example.com","updated":"2023-03-13T04:20:40Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"yhCZhoa4z","title":"Test Folder","url":"/dashboards/f/yhCZhoa4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T05:07:29Z","updatedBy":"example@example.com","updated":"2023-03-13T05:07:29Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -1498,14 +1452,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Q5avpave4nXPFOrAW+uvGQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-G9Cs9sahIkU00LdTEBSlgw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:43 GMT + - Mon, 13 Mar 2023 05:07:32 GMT expires: - '-1' pragma: @@ -1513,7 +1467,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681244.758.30.357025|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684053.849.29.624301|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1542,10 +1496,10 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/0RV2KoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/yhCZhoa4z response: body: - string: '{"id":24,"uid":"0RV2KoaVk","title":"Test Folder Update","url":"/dashboards/f/0RV2KoaVk/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:20:40Z","updatedBy":"example@example.com","updated":"2023-03-13T04:20:44Z","version":2,"parentUid":""}' + string: '{"id":24,"uid":"yhCZhoa4z","title":"Test Folder Update","url":"/dashboards/f/yhCZhoa4z/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T05:07:29Z","updatedBy":"example@example.com","updated":"2023-03-13T05:07:33Z","version":2,"parentUid":""}' headers: cache-control: - no-cache @@ -1554,14 +1508,14 @@ interactions: content-length: - '346' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7sCb70Epl6iyAe5E/CusjA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CX3OAZyOy+Zn/uVZgV57MQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:44 GMT + - Mon, 13 Mar 2023 05:07:33 GMT expires: - '-1' pragma: @@ -1569,7 +1523,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681245.327.30.174917|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684054.419.31.853533|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1596,10 +1550,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"0RV2KoaVk","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"yhCZhoa4z","title":"Test Folder Update"}]' headers: cache-control: @@ -1609,14 +1563,14 @@ interactions: content-length: - '148' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MSFIC/OE1buVl0aRLEFEjw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rjdy6p+AVMALTqOJHn6e/Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:45 GMT + - Mon, 13 Mar 2023 05:07:34 GMT expires: - '-1' pragma: @@ -1624,7 +1578,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681246.042.29.845901|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684055.133.28.832875|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1651,10 +1605,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update response: body: - string: '{"message":"id is invalid","traceID":"7902cbf9a367591dc8bb3776054376d2"}' + string: '{"message":"id is invalid","traceID":"f25f2705de5ae10341fd08d2314f2d84"}' headers: cache-control: - no-cache @@ -1663,14 +1617,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2Z39sB74P/a7ehLWbYRvfQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Vh2yNsYCOISiKeyq8SkoFg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:45 GMT + - Mon, 13 Mar 2023 05:07:34 GMT expires: - '-1' pragma: @@ -1678,7 +1632,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681246.701.31.136444|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684055.814.30.124940|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1705,7 +1659,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/Test%20Folder%20Update + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/Test%20Folder%20Update response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -1717,14 +1671,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hRJkseigOqlDPfE6qxM+gw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VWoQAWvZIsUzWeMUYmJXfA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:46 GMT + - Mon, 13 Mar 2023 05:07:35 GMT expires: - '-1' pragma: @@ -1732,7 +1686,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681247.28.30.564545|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684056.357.28.222107|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1759,10 +1713,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"0RV2KoaVk","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"yhCZhoa4z","title":"Test Folder Update"}]' headers: cache-control: @@ -1772,14 +1726,14 @@ interactions: content-length: - '148' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pZmP3CUFpn9+9OBoB5W6VQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-h89Xsp91R3clqCK7ptbSKA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:46 GMT + - Mon, 13 Mar 2023 05:07:35 GMT expires: - '-1' pragma: @@ -1787,7 +1741,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681247.847.30.398236|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684056.931.30.54178|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1816,7 +1770,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders/0RV2KoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/yhCZhoa4z response: body: string: '' @@ -1828,14 +1782,14 @@ interactions: content-length: - '0' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-4HNHPgWwH6NS/t6fiOBRXg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Eqoe2liYytKK7kIdUK22PA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:47 GMT + - Mon, 13 Mar 2023 05:07:36 GMT expires: - '-1' pragma: @@ -1843,7 +1797,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681248.416.28.844652|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684057.483.27.421296|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1870,7 +1824,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/folders + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"}]' @@ -1882,14 +1836,14 @@ interactions: content-length: - '91' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lsB48DklHM8GtC8vmmJv4Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-H7crq9XFSpF9byItxoAcjQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:48 GMT + - Mon, 13 Mar 2023 05:07:37 GMT expires: - '-1' pragma: @@ -1897,7 +1851,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681249.206.29.768938|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684058.259.31.498093|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1927,10 +1881,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -1941,14 +1895,14 @@ interactions: content-length: - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Uw2qZX3XtveRJzcVVlhlew';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dC8OjZS3Lp7cqdxJk9MDjQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:48 GMT + - Mon, 13 Mar 2023 05:07:37 GMT expires: - '-1' pragma: @@ -1956,7 +1910,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681249.87.27.77375|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684058.917.29.469824|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1983,10 +1937,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -1996,14 +1950,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fxxm/AoKOzlxNdoTuvkgTQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/MV4V7ESQrT44hzftyHgsg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:49 GMT + - Mon, 13 Mar 2023 05:07:38 GMT expires: - '-1' pragma: @@ -2011,7 +1965,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681250.599.30.758127|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684059.618.28.50295|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2038,10 +1992,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2051,14 +2005,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Irr4ROqiq9wGurtTN7lGmQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-04RWezammx5aT1D/tTmU8w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:50 GMT + - Mon, 13 Mar 2023 05:07:39 GMT expires: - '-1' pragma: @@ -2066,7 +2020,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681251.277.30.975530|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684060.296.29.422209|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2096,10 +2050,10 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/3 + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/3 response: body: - string: '{"datasource":{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource updated","name":"Test Azure Monitor Data Source"}' headers: @@ -2110,14 +2064,14 @@ interactions: content-length: - '463' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-eIqqcXbJfhPtstqIfmRk3A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DF92uuEJK6NtMBrm6L1bwQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:50 GMT + - Mon, 13 Mar 2023 05:07:39 GMT expires: - '-1' pragma: @@ -2125,7 +2079,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681251.84.27.116167|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684060.847.28.777206|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2152,12 +2106,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -2168,14 +2122,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fqXDSO5lnO1rPgbB2OdBVA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-d3QfKSZ6LinVH9dGjd22Qw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:51 GMT + - Mon, 13 Mar 2023 05:07:40 GMT expires: - '-1' pragma: @@ -2183,7 +2137,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681252.565.29.637308|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684061.552.32.152251|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2210,10 +2164,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"AG22Fo-Vk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2223,14 +2177,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YxwniVDkdfgLbgYqR+PxAw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sMDJSKCAUGusSzYUPoBt2A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:52 GMT + - Mon, 13 Mar 2023 05:07:41 GMT expires: - '-1' pragma: @@ -2238,7 +2192,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681253.244.30.999989|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684062.226.28.452143|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2267,7 +2221,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources/uid/AG22Fo-Vk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/uid/kF7M2T-Vk response: body: string: '{"id":3,"message":"Data source deleted"}' @@ -2279,14 +2233,14 @@ interactions: content-length: - '40' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ttq0E9ui+Hm9asVXNvyA0g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-svbW1g6qzd1Xq2xOizTBYw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:52 GMT + - Mon, 13 Mar 2023 05:07:41 GMT expires: - '-1' pragma: @@ -2294,7 +2248,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681253.815.30.915809|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684062.793.28.51352|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2321,7 +2275,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/datasources + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure @@ -2335,14 +2289,14 @@ interactions: content-length: - '759' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SC3dUC9/UyzQciAMFiWzhA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zGOKy6FbuEHDQfRrmnprlQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:53 GMT + - Mon, 13 Mar 2023 05:07:42 GMT expires: - '-1' pragma: @@ -2350,7 +2304,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681254.516.32.63891|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684063.492.29.59763|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2380,10 +2334,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications response: body: - string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54.264684027Z","updated":"2023-03-13T04:20:54.264684127Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43.195263151Z","updated":"2023-03-13T05:07:43.195263251Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2392,14 +2346,14 @@ interactions: content-length: - '340' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-a1v+X3XIolY333tskpfKBQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CqgBnfAsx5dWojYhO8i47w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:54 GMT + - Mon, 13 Mar 2023 05:07:43 GMT expires: - '-1' pragma: @@ -2407,7 +2361,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681255.228.30.368551|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684064.161.28.748322|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2434,10 +2388,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/5F-2FoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1hdG2oaVz response: body: - string: '{"message":"notificationId is invalid","traceID":"d1c78db46dcc93ab4f93eb51a0538529"}' + string: '{"message":"notificationId is invalid","traceID":"d010aab587a2c4dd03d2492ab3000552"}' headers: cache-control: - no-cache @@ -2446,14 +2400,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ANpCDcn9VNqwnXaUIDZKvw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FFWOuK+/rfxSXvU6zHpIzg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:54 GMT + - Mon, 13 Mar 2023 05:07:43 GMT expires: - '-1' pragma: @@ -2461,7 +2415,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681255.924.31.815894|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684064.832.28.442195|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2488,10 +2442,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/5F-2FoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/1hdG2oaVz response: body: - string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:54Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:43Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2500,14 +2454,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VCIQqG9h6dIPVL1oNMxuBQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GIDL6l2BPIw10PhOa19tCA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:55 GMT + - Mon, 13 Mar 2023 05:07:44 GMT expires: - '-1' pragma: @@ -2515,7 +2469,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681256.491.30.914675|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684065.389.30.712079|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2542,10 +2496,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/5F-2FoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1hdG2oaVz response: body: - string: '{"message":"notificationId is invalid","traceID":"85a2d57be043f6c296b03a9869214a53"}' + string: '{"message":"notificationId is invalid","traceID":"87fcd081d9439ab36fcbc5cd2d79e952"}' headers: cache-control: - no-cache @@ -2554,14 +2508,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kylx4uKywwO3hT1Ejmw4aQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6lfZGLrHfcqI4BtoygZQgQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:56 GMT + - Mon, 13 Mar 2023 05:07:45 GMT expires: - '-1' pragma: @@ -2569,7 +2523,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681257.172.29.992300|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684066.044.30.150105|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2596,10 +2550,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/5F-2FoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/1hdG2oaVz response: body: - string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:54Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:43Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2608,14 +2562,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-itDGqMQQDyfDgrcH8yFqvw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-U3vBxJZRZnDJ3SKA1wp8NA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:56 GMT + - Mon, 13 Mar 2023 05:07:45 GMT expires: - '-1' pragma: @@ -2623,7 +2577,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681257.737.32.814200|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684066.59.29.312028|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2653,10 +2607,10 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/1 + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1 response: body: - string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:46Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2665,14 +2619,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cWpQlVRNbQUSqiArOd3kow';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LXC7PwvM6SztH7TdBdBj1A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:57 GMT + - Mon, 13 Mar 2023 05:07:46 GMT expires: - '-1' pragma: @@ -2680,7 +2634,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681258.306.29.982540|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684067.134.28.882239|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2707,10 +2661,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications response: body: - string: '[{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' + string: '[{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:46Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' headers: cache-control: - no-cache @@ -2719,14 +2673,14 @@ interactions: content-length: - '322' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9CU/ZIc5/mEc8txeBhUsrg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pvu/oig8BKxPIyH1/WiWtw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:58 GMT + - Mon, 13 Mar 2023 05:07:47 GMT expires: - '-1' pragma: @@ -2734,7 +2688,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681259.002.28.917785|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684068.245.30.917488|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2761,10 +2715,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/5F-2FoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1hdG2oaVz response: body: - string: '{"message":"notificationId is invalid","traceID":"3f02695bd1ff8ac9ad0fa23a27d88bb4"}' + string: '{"message":"notificationId is invalid","traceID":"14a1ac63f8e0601dfb1723773d32e89e"}' headers: cache-control: - no-cache @@ -2773,14 +2727,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-mEgFCgF0Wo7i/jXlc29Qzw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3IjBVv/LZkzwC/KSjvXyrw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:58 GMT + - Mon, 13 Mar 2023 05:07:47 GMT expires: - '-1' pragma: @@ -2788,7 +2742,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681259.66.31.347479|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684068.911.29.787501|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2815,10 +2769,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/uid/5F-2FoaVk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/1hdG2oaVz response: body: - string: '{"id":1,"uid":"5F-2FoaVk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T04:20:54Z","updated":"2023-03-13T04:20:57Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:46Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2827,14 +2781,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ojlg2HkfodsfmS2/PE9CCQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YQIXcYk5aoVLogpFDpirRw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:59 GMT + - Mon, 13 Mar 2023 05:07:48 GMT expires: - '-1' pragma: @@ -2842,7 +2796,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681260.219.27.79434|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684069.468.29.13745|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2871,7 +2825,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications/1 + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1 response: body: string: '{"message":"Notification deleted"}' @@ -2883,14 +2837,14 @@ interactions: content-length: - '34' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-awxPZWj51Lf9/sz/6tL6zA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3fw+llnYziA14lseamGgqg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:20:59 GMT + - Mon, 13 Mar 2023 05:07:49 GMT expires: - '-1' pragma: @@ -2898,7 +2852,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681260.81.28.127517|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684070.026.30.34792|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2925,7 +2879,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/alert-notifications + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications response: body: string: '[]' @@ -2937,14 +2891,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-tGhzTRReBOEKhB56xTJ68g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-RUiuircs2+HVmGcLzoeO+g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:00 GMT + - Mon, 13 Mar 2023 05:07:49 GMT expires: - '-1' pragma: @@ -2952,7 +2906,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681261.497.32.726120|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684070.704.29.12109|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2981,10 +2935,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"PGl2Ko-Vz","url":"/d/PGl2Ko-Vz/test-dashboard","version":1}' + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"5A1GhTa4k","url":"/d/5A1GhTa4k/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -2993,14 +2947,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-wOMGqSyvCx8Z1AVOGeHxpw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AfnvLDT/JOwe9syR6Qkw0w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:01 GMT + - Mon, 13 Mar 2023 05:07:50 GMT expires: - '-1' pragma: @@ -3008,7 +2962,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681262.163.29.46735|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684071.369.32.47541|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3035,11 +2989,11 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/PGl2Ko-Vz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/uid/5A1GhTa4k response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/PGl2Ko-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:21:01Z","updated":"2023-03-13T04:21:01Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test - Dashboard","uid":"PGl2Ko-Vz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/5A1GhTa4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T05:07:50Z","updated":"2023-03-13T05:07:50Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test + Dashboard","uid":"5A1GhTa4k","version":1}}' headers: cache-control: - no-cache @@ -3048,14 +3002,14 @@ interactions: content-length: - '832' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F0DWW0tzbNJhAQcYFRFfNA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SrM+VXYr4mt0qk4OKxD8xA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:01 GMT + - Mon, 13 Mar 2023 05:07:51 GMT expires: - '-1' pragma: @@ -3063,7 +3017,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681262.886.29.687469|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684072.081.29.918027|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3077,7 +3031,7 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard", "uid": "PGl2Ko-Vz", "version": + body: '{"dashboard": {"title": "Test Dashboard", "uid": "5A1GhTa4k", "version": 1}, "overwrite": true}' headers: Accept: @@ -3093,10 +3047,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/db + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"PGl2Ko-Vz","url":"/d/PGl2Ko-Vz/test-dashboard","version":2}' + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"5A1GhTa4k","url":"/d/5A1GhTa4k/test-dashboard","version":2}' headers: cache-control: - no-cache @@ -3105,14 +3059,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-S0eWnVDvf/4Jb9IxW8bUjg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sPO6LE2OkDcQxDpp1ZwcVQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:02 GMT + - Mon, 13 Mar 2023 05:07:51 GMT expires: - '-1' pragma: @@ -3120,7 +3074,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681263.577.31.136094|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684072.763.29.471495|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3147,54 +3101,54 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":17,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"PGl2Ko-Vz","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/PGl2Ko-Vz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":17,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":13,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"5A1GhTa4k","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/5A1GhTa4k/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":16,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ln/0r3etDwkeXq/3lvIdVQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zA57i9kb4DXPAh1/trIN3Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:03 GMT + - Mon, 13 Mar 2023 05:07:52 GMT expires: - '-1' pragma: @@ -3202,7 +3156,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681264.319.29.713996|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684073.512.29.74141|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3231,7 +3185,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 response: body: string: '[]' @@ -3243,14 +3197,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GNgrTgkmxbcejeR2zFKQEg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Nl9VJxaGzxgEH7COduWmUQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:03 GMT + - Mon, 13 Mar 2023 05:07:53 GMT expires: - '-1' pragma: @@ -3258,7 +3212,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681264.892.27.648822|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684074.097.28.648939|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3287,7 +3241,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/dashboards/uid/PGl2Ko-Vz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/uid/5A1GhTa4k response: body: string: '{"id":25,"message":"Dashboard Test Dashboard deleted","title":"Test @@ -3300,14 +3254,14 @@ interactions: content-length: - '79' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GyvbC4g3OgnmBDWiVO1Jyg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-d+SMsYq4L9gdVLlRyvlYMw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:04 GMT + - Mon, 13 Mar 2023 05:07:53 GMT expires: - '-1' pragma: @@ -3315,7 +3269,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681265.57.32.186101|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684074.767.31.120406|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3342,53 +3296,53 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":17,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":13,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EJrRqusDlgeWZMCBxG5qpw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9IvWwElX9p78QmWNNqjXqQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:05 GMT + - Mon, 13 Mar 2023 05:07:54 GMT expires: - '-1' pragma: @@ -3396,7 +3350,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681266.313.27.418445|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684075.496.29.664863|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3425,7 +3379,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 response: body: string: '[]' @@ -3437,14 +3391,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zvvrCxxgWnrhOKXdO7EYlA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F3XGdHWfDaFHTsGw0de6OA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:21:05 GMT + - Mon, 13 Mar 2023 05:07:55 GMT expires: - '-1' pragma: @@ -3452,7 +3406,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681266.91.28.7156|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678684076.058.27.152058|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3481,21 +3435,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:48.1537718Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:48.1537718Z"},"identity":{"principalId":"1487575b-5326-49bc-b290-d0e30bd05463","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamg-cchsamfze0fahxeu.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1065' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:21:06 GMT + - Mon, 13 Mar 2023 05:07:55 GMT etag: - - '"640010df-0000-0d00-0000-640ea4800000"' + - '"6500b728-0000-0d00-0000-640eaf6c0000"' expires: - '-1' pragma: @@ -3531,7 +3485,7 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: string: 'null' @@ -3539,7 +3493,7 @@ interactions: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -3547,13 +3501,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:21:07 GMT + - Mon, 13 Mar 2023 05:07:57 GMT etag: - - '"640054e0-0000-0d00-0000-640ea4b40000"' + - '"6500692a-0000-0d00-0000-640eafad0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -3585,63 +3539,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' - headers: - cache-control: - - no-cache - content-length: - - '514' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 04:21:38 GMT - etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --yes - User-Agent: - - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:22:08 GMT + - Mon, 13 Mar 2023 05:08:27 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3669,21 +3581,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:22:38 GMT + - Mon, 13 Mar 2023 05:08:58 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3711,21 +3623,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:09 GMT + - Mon, 13 Mar 2023 05:09:28 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3753,21 +3665,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:39 GMT + - Mon, 13 Mar 2023 05:09:58 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3795,21 +3707,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:24:09 GMT + - Mon, 13 Mar 2023 05:10:28 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3837,21 +3749,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:24:39 GMT + - Mon, 13 Mar 2023 05:10:58 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3879,21 +3791,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:25:09 GMT + - Mon, 13 Mar 2023 05:11:28 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3921,21 +3833,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:25:39 GMT + - Mon, 13 Mar 2023 05:11:58 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -3963,21 +3875,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:26:09 GMT + - Mon, 13 Mar 2023 05:12:28 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -4005,21 +3917,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:26:39 GMT + - Mon, 13 Mar 2023 05:12:59 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -4047,21 +3959,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:27:11 GMT + - Mon, 13 Mar 2023 05:13:29 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -4089,21 +4001,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:27:41 GMT + - Mon, 13 Mar 2023 05:13:59 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -4131,21 +4043,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Deleting","startTime":"2023-03-13T04:21:07.983948Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' headers: cache-control: - no-cache content-length: - - '514' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:28:11 GMT + - Mon, 13 Mar 2023 05:14:29 GMT etag: - - '"4300c5e5-0000-0d00-0000-640ea4ba0000"' + - '"4400401b-0000-0d00-0000-640eafb40000"' expires: - '-1' pragma: @@ -4173,21 +4085,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","name":"02bfc754-f0a3-4148-a01f-c11abc495044*529B7E93ABB9A0C34DCED246E46F7644446C40344DA0414359F5655575CF5F97","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-13T04:21:07.983948Z","endTime":"2023-03-13T04:28:32.331251Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Succeeded","startTime":"2023-03-13T05:07:57.4037051Z","endTime":"2023-03-13T05:14:37.6566178Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '573' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:28:41 GMT + - Mon, 13 Mar 2023 05:15:01 GMT etag: - - '"4300e8ec-0000-0d00-0000-640ea6700000"' + - '"4400dc22-0000-0d00-0000-640eb13d0000"' expires: - '-1' pragma: @@ -4220,10 +4132,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=principalId%20eq%20'1487575b-5326-49bc-b290-d0e30bd05463' + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=principalId%20eq%20'2402dc06-39df-4d3d-a3a2-bf407882db2a' response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"1487575b-5326-49bc-b290-d0e30bd05463","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:30.4287441Z","updatedOn":"2023-03-13T04:20:30.4287441Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:16.8366817Z","updatedOn":"2023-03-13T05:07:16.8366817Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' headers: cache-control: - no-cache @@ -4232,7 +4144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:28:41 GMT + - Mon, 13 Mar 2023 05:15:00 GMT expires: - '-1' pragma: @@ -4274,7 +4186,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"1487575b-5326-49bc-b290-d0e30bd05463","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:20:30.4287441Z","updatedOn":"2023-03-13T04:28:42.7496505Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:16.8366817Z","updatedOn":"2023-03-13T05:15:02.2163053Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -4283,7 +4195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:28:44 GMT + - Mon, 13 Mar 2023 05:15:03 GMT expires: - '-1' pragma: @@ -4318,16 +4230,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg5dh7ufupxdja4r5qs6spgjw7km72rkchoaoa62wkm66yn5jrwc5szmmkrwz6nbd/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '4590' + - '2357' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:28:45 GMT + - Mon, 13 Mar 2023 05:15:04 GMT expires: - '-1' pragma: @@ -4339,19 +4251,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 1d672c2f-1e9f-4449-9a48-f90ee7708019 - - 9427e2bf-dfe0-4983-8813-e5fb52b8160d - - f4a4a6ee-f698-4d93-976c-5dd5b7a82abc - - ed23a1a9-8940-4e07-b664-3584e49b8072 - - df1aa5ea-95a1-42ca-bde4-013c51fabfc8 - - 423686fc-23cd-47ab-9ff2-091f0e13c04a - - 7c1e49fe-50ae-4810-8a7f-4893e901d44a - - f6403878-da0f-41a3-9ddf-558fb4103815 - - 92e192b7-65f6-4373-8d2f-81cc4050a88f - - d3d727a3-c3ef-4421-9410-254be595b9e5 - - 33aab1d8-3c2c-434a-b364-4801cf12ed3a - - 3f2cb9c1-5c27-4fc4-9e96-9a4af34373c5 - - 8344fbbb-57e5-40d5-8d85-470dfd061e1d + - d22d9aab-03d3-4a77-9ac0-1769c45ca77f + - e64991d3-8492-4ca2-a945-8d59a1be6c18 + - bd3b29e8-d7a9-4c4c-a0eb-52910542ac35 + - 136e6ad4-d377-4ef1-982b-2b8f2361abf1 + - 54570476-3b64-4e82-b4d6-5740bb79ba39 + - 14a3766d-6cee-4e7b-a2cc-cd334c313a76 + - 82a663da-0654-48ae-bc65-a0a3f1b9cc82 + - a0cb1b66-8b9e-4fbb-9dd2-5977bb730494 + - 139b4fed-bd1d-4f5d-aef2-f1cd062580f4 + - f7130d5f-3d48-4e4f-abe1-a70d3ef2ec0e + - 8745617a-7df4-46f6-968a-0ce4a3a7b7fb + - c9202db5-dc89-41e4-82a6-681f654a21f9 + - 25e792af-1746-4fc3-b543-84f23f8c32aa status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index c9f97667289..cde5eeecdd6 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -138,7 +138,7 @@ def test_amg_e2e(self, resource_group): # Test Instance self.kwargs.update({ - 'name': 'clitestamg', + 'name': 'clitestamge2e', 'location': 'westeurope' }) From 53cdeffed1416e541440889116300f8affa4d7a5 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 12 Mar 2023 22:47:21 -0700 Subject: [PATCH 14/19] fix command linter error --- src/amg/azext_amg/_help.py | 2 +- src/amg/azext_amg/_params.py | 3 +-- src/amg/azext_amg/commands.py | 5 ----- src/amg/azext_amg/custom.py | 22 ---------------------- 4 files changed, 2 insertions(+), 30 deletions(-) diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index 21a2ea61391..cb752cb295f 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -241,7 +241,7 @@ --folders-to-include "Azure Monitor Container Insights" "Azure Monitor" - name: Preview the sync text: | - az grafana sync + az grafana dashboard sync --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination --dry-run diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index ec3c9231e2f..b1642cb822b 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -38,6 +38,7 @@ def load_arguments(self, _): c.argument("skip_system_assigned_identity", options_list=["-s", "--skip-system-assigned-identity"], arg_type=get_three_state_flag(), help="Do not enable system assigned identity") c.argument("skip_role_assignments", arg_type=get_three_state_flag(), help="Do not create role assignments for managed identity and the current login user") c.argument("principal_ids", nargs="+", help="space-separated Azure AD object ids for users, groups, etc to be made as Grafana Admins. Once provided, CLI won't make the current logon user as Grafana Admin") + c.argument("principal_types", get_enum_type(["User", "Group", "ServicePrincipal"]), nargs="+", help="space-separated Azure AD principal types to pair with --principal-ids") with self.argument_context("grafana update") as c: c.argument("api_key_and_service_account", get_enum_type(["Enabled", "Disabled"]), options_list=['--api-key', '--service-account'], @@ -80,8 +81,6 @@ def load_arguments(self, _): c.argument("destination", options_list=["--destination", "-d"], help="resource id of the destination workspace") c.argument("dry_run", arg_type=get_three_state_flag(), help="preview changes w/o committing") c.argument("folders", nargs="+", help="space separated folder list which sync command shall handle dashboards underneath") - c.argument("data_source_uid_mappings", options_list=["--data-source-uid-mappings", "-m"], nargs="+", - help="space seperated key vaule pairs that 'sync' command can link to new data sources at destination workspace, e.g. --data-source-uid-mappings datasource-1=datasource-2") with self.argument_context("grafana") as c: c.argument("time_to_live", default="1d", help="The life duration. For example, 1d if your key is going to last fr one day. Supported units are: s,m,h,d,w,M,y") diff --git a/src/amg/azext_amg/commands.py b/src/amg/azext_amg/commands.py index ef133ae9c56..f915e4f450b 100644 --- a/src/amg/azext_amg/commands.py +++ b/src/amg/azext_amg/commands.py @@ -19,11 +19,6 @@ def load_command_table(self, _): g.custom_command('backup', 'backup_grafana', is_preview=True) g.custom_command('restore', 'restore_grafana', is_preview=True) - with self.command_group('grafana annotation') as g: - g.custom_command('create', 'create_annotation') - g.custom_command('list', 'list_annotations') - g.custom_command('delete', 'delete_annotation') - with self.command_group('grafana dashboard') as g: g.custom_command('create', 'create_dashboard') g.custom_command('delete', 'delete_dashboard') diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index cd7327ea557..44e2b4dd4ca 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -384,28 +384,6 @@ def remap_uids(indict, uid_mapping, data_source_missed): remap_uids(v, uid_mapping, data_source_missed) -def create_annotation(cmd, grafana_name, description, resource_group_name=None, api_key_or_token=None, - subscription=None): - payload = { - "text": description - } - response = _send_request(cmd, resource_group_name, grafana_name, "post", "/api/annotations", body=payload, - api_key_or_token=api_key_or_token, subscription=subscription) - return json.loads(response.content) - - -def list_annotations(cmd, grafana_name, resource_group_name=None, api_key_or_token=None, subscription=None): - response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/annotations", - api_key_or_token=api_key_or_token, subscription=subscription) - return json.loads(response.content) - - -def delete_annotation(cmd, grafana_name, annotation, resource_group_name=None, api_key_or_token=None, - subscription=None): - _send_request(cmd, resource_group_name, grafana_name, "delete", "/api/annotations/" + annotation, - api_key_or_token=api_key_or_token, subscription=subscription) - - def show_dashboard(cmd, grafana_name, uid, resource_group_name=None, api_key_or_token=None, subscription=None): response = _send_request(cmd, resource_group_name, grafana_name, "get", "/api/dashboards/uid/" + uid, api_key_or_token=api_key_or_token, subscription=subscription) From dd13879a2711b28f5a5ca9dc28249ea9d0758dd1 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 12 Mar 2023 23:03:09 -0700 Subject: [PATCH 15/19] fix command linter error --- src/amg/azext_amg/_help.py | 10 ++-------- src/amg/azext_amg/custom.py | 4 ---- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/src/amg/azext_amg/_help.py b/src/amg/azext_amg/_help.py index cb752cb295f..9afbb2afea7 100644 --- a/src/amg/azext_amg/_help.py +++ b/src/amg/azext_amg/_help.py @@ -235,16 +235,10 @@ examples: - name: Sync only dashboardss under a few folders text: | - az grafana dashboard sync - --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source - --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination - --folders-to-include "Azure Monitor Container Insights" "Azure Monitor" + az grafana dashboard sync --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination --folders-to-include "Azure Monitor Container Insights" "Azure Monitor" - name: Preview the sync text: | - az grafana dashboard sync - --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source - --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination - --dry-run + az grafana dashboard sync --source /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/source --destination /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/destination --dry-run """ helps['grafana folder'] = """ diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 44e2b4dd4ca..7760f032d75 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -311,7 +311,6 @@ def sync_dashboard(cmd, source, destination, folders_to_include=None, folders_to "dashboards_skipped": [], } data_source_missed = set() - data_source_unmatched = set() # requires uid mapping for dashboard in source_dashboards: uid = dashboard["uid"] source_dashboard = show_dashboard(cmd, source_workspace, uid, resource_group_name=source_resource_group, @@ -362,9 +361,6 @@ def sync_dashboard(cmd, source, destination, folders_to_include=None, folders_to if data_source_missed: logger.warning(("A few data sources used by dashboards are unavailable at destination: \"%s\"" ". Please configure them."), ", ".join(data_source_missed)) - if data_source_unmatched: - logger.warning(("Data sources used by dashboards have more than one matches at destination: \"%s\"" - ". Use --data_source-uid-mappings to disambiguate"), ", ".join(data_source_unmatched)) return summary From 5e07f11fe176a4ce7ded0d9a6a55ad576915253f Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 12 Mar 2023 23:27:47 -0700 Subject: [PATCH 16/19] fix the cmd lint error --- src/amg/azext_amg/_params.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/amg/azext_amg/_params.py b/src/amg/azext_amg/_params.py index b1642cb822b..c4842167ea1 100644 --- a/src/amg/azext_amg/_params.py +++ b/src/amg/azext_amg/_params.py @@ -76,6 +76,9 @@ def load_arguments(self, _): with self.argument_context("grafana dashboard import") as c: c.argument("definition", help="The complete dashboard model in json string, Grafana gallery id, a path or url to a file with such content") + with self.argument_context("grafana dashboard delete") as c: + c.ignore("ignore_error") + with self.argument_context("grafana dashboard sync") as c: c.argument("source", options_list=["--source", "-s"], help="resource id of the source workspace") c.argument("destination", options_list=["--destination", "-d"], help="resource id of the destination workspace") From 82ca3f74eaf67ea95016086e2ce5ddb719e104a0 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Sun, 12 Mar 2023 23:40:59 -0700 Subject: [PATCH 17/19] fix info message of default role assignments --- src/amg/azext_amg/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index 7760f032d75..b717f736d7c 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -54,7 +54,7 @@ def create_grafana(cmd, resource_group_name, grafana_name, resource = LongRunningOperation(cmd.cli_ctx)(poller) logger.warning("Grafana instance of '%s' was created. Now creating default role assignments for its " - "managed identity and current CLI user", grafana_name) + "managed identity, and current CLI account unless --principal-ids are provided", grafana_name) subscription_scope = '/subscriptions/' + client._config.subscription_id # pylint: disable=protected-access From dfdba0fa4cad8bf594bb373be41480037bf4ddb4 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Mon, 13 Mar 2023 13:47:40 -0700 Subject: [PATCH 18/19] accept 412 on folder restoration --- src/amg/azext_amg/restore.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/amg/azext_amg/restore.py b/src/amg/azext_amg/restore.py index 22ae227fd2c..3ec46407e52 100644 --- a/src/amg/azext_amg/restore.py +++ b/src/amg/azext_amg/restore.py @@ -98,7 +98,8 @@ def _create_folder(grafana_url, file_path, http_headers): folder = json.loads(data) result = send_grafana_post(f'{grafana_url}/api/folders', json.dumps(folder), http_headers) - logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] == 200 else "FAILURE") + # 412 means the folder has existed + logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] in [200, 412] else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) From e13e3239be8834c5a0c28268084fe6bd6a264788 Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Mon, 13 Mar 2023 22:29:52 -0700 Subject: [PATCH 19/19] ensure old CLI with RBAC track-1 sdk can also work --- src/amg/azext_amg/azext_metadata.json | 2 +- src/amg/azext_amg/custom.py | 13 +- src/amg/azext_amg/restore.py | 3 +- .../recordings/test_amg_backup_restore.yaml | 1174 +++++++++-------- .../latest/recordings/test_amg_crud.yaml | 560 +++----- .../tests/latest/recordings/test_amg_e2e.yaml | 810 ++++++------ .../latest/recordings/test_api_key_e2e.yaml | 230 ++-- .../recordings/test_service_account_e2e.yaml | 362 +++-- .../tests/latest/test_amg_scenario.py | 10 +- 9 files changed, 1527 insertions(+), 1637 deletions(-) diff --git a/src/amg/azext_amg/azext_metadata.json b/src/amg/azext_amg/azext_metadata.json index 777bb037c86..2928aa63a9c 100644 --- a/src/amg/azext_amg/azext_metadata.json +++ b/src/amg/azext_amg/azext_metadata.json @@ -1,5 +1,5 @@ { "azext.isPreview": false, - "azext.minCliCoreVersion": "2.46.0", + "azext.minCliCoreVersion": "2.38.0", "azext.maxCliCoreVersion": "2.99.0" } \ No newline at end of file diff --git a/src/amg/azext_amg/custom.py b/src/amg/azext_amg/custom.py index b717f736d7c..29caa09b5cf 100644 --- a/src/amg/azext_amg/custom.py +++ b/src/amg/azext_amg/custom.py @@ -112,7 +112,8 @@ def _get_login_account_principal_id(cli_ctx): def _create_role_assignment(cli_ctx, principal_id, principal_type, role_definition_id, scope): import time from azure.core.exceptions import ResourceExistsError - assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments + assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION, + api_version="2020-04-01-preview").role_assignments RoleAssignmentCreateParameters = get_sdk(cli_ctx, ResourceType.MGMT_AUTHORIZATION, 'RoleAssignmentCreateParameters', mod='models', operation_group='role_assignments') @@ -127,10 +128,13 @@ def _create_role_assignment(cli_ctx, principal_id, principal_type, role_definiti assignments_client.create(scope=scope, role_assignment_name=assignment_name, parameters=parameters) break - except ResourceExistsError: + except ResourceExistsError: # Exception from Track-2 SDK logger.info('Role assignment already exists') break except CloudError as ex: + if 'role assignment already exists' in ex.message: # Exception from Track-1 SDK + logger.info('Role assignment already exists') + break if retry_time < retry_times and ' does not exist in the directory ' in (ex.message or "").lower(): time.sleep(5) logger.warning('Retrying role assignment creation: %s/%s', retry_time + 1, @@ -140,9 +144,10 @@ def _create_role_assignment(cli_ctx, principal_id, principal_type, role_definiti def _delete_role_assignment(cli_ctx, principal_id): - assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION).role_assignments + assignments_client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_AUTHORIZATION, + api_version="2020-04-01-preview").role_assignments f = f"principalId eq '{principal_id}'" - assignments = list(assignments_client.list_for_subscription(filter=f)) + assignments = list(assignments_client.list(filter=f)) for a in assignments or []: assignments_client.delete_by_id(a.id) diff --git a/src/amg/azext_amg/restore.py b/src/amg/azext_amg/restore.py index 3ec46407e52..5aa59382b43 100644 --- a/src/amg/azext_amg/restore.py +++ b/src/amg/azext_amg/restore.py @@ -99,7 +99,8 @@ def _create_folder(grafana_url, file_path, http_headers): folder = json.loads(data) result = send_grafana_post(f'{grafana_url}/api/folders', json.dumps(folder), http_headers) # 412 means the folder has existed - logger.warning("Create folder \"%s\". %s", folder.get('title', ''), "SUCCESS" if result[0] in [200, 412] else "FAILURE") + logger.warning("Create folder \"%s\". %s", folder.get('title', ''), + "SUCCESS" if result[0] in [200, 412] else "FAILURE") logger.info("status: %s, msg: %s", result[0], result[1]) diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml index d50cd9cde82..23d1255be6e 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_backup_restore.yaml @@ -20,29 +20,29 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","name":"clitestbackup","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.68013Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.68013Z"},"identity":{"principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1139' + - '1144' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:14:46 GMT + - Tue, 14 Mar 2023 05:10:59 GMT etag: - - '"d900c2cd-0000-0600-0000-640ea3370000"' + - '"830147d8-0000-0600-0000-641001e40000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -74,21 +74,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '507' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:15:17 GMT + - Tue, 14 Mar 2023 05:11:29 GMT etag: - - '"5f006273-0000-0600-0000-640ea3370000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -120,21 +120,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '507' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:15:47 GMT + - Tue, 14 Mar 2023 05:12:00 GMT etag: - - '"5f006273-0000-0600-0000-640ea3370000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -166,21 +166,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '507' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:16:17 GMT + - Tue, 14 Mar 2023 05:12:30 GMT etag: - - '"5f006273-0000-0600-0000-640ea3370000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -212,21 +212,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '507' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:16:47 GMT + - Tue, 14 Mar 2023 05:13:00 GMT etag: - - '"5f006273-0000-0600-0000-640ea3370000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -258,21 +258,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '507' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:17:17 GMT + - Tue, 14 Mar 2023 05:13:30 GMT etag: - - '"5f006273-0000-0600-0000-640ea3370000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -304,21 +304,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '507' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:17:48 GMT + - Tue, 14 Mar 2023 05:14:00 GMT etag: - - '"5f006273-0000-0600-0000-640ea3370000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -350,21 +350,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Accepted","startTime":"2023-03-13T04:14:47.0709591Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '507' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:18 GMT + - Tue, 14 Mar 2023 05:14:30 GMT etag: - - '"5f006273-0000-0600-0000-640ea3370000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -396,21 +396,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","name":"9d520acb-30ed-46a6-b65c-e09f11a9ab2f*C3937FFF33E887B4E026EBC7052936CEC43D457FB55E4BBC5E7F99E384D47599","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","status":"Succeeded","startTime":"2023-03-13T04:14:47.0709591Z","endTime":"2023-03-13T04:18:41.1376349Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Accepted","startTime":"2023-03-14T05:10:59.905506Z"}' headers: cache-control: - no-cache content-length: - - '578' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:47 GMT + - Tue, 14 Mar 2023 05:15:00 GMT etag: - - '"5f006f73-0000-0600-0000-640ea4210000"' + - '"0000e6d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -442,21 +442,67 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","name":"23562635-7ab4-4850-a5b4-ff4e35570378*8A5A1F181408915EE47776E530DB05C8653F5DB6CC4C1242C4038A09A3CA5D74","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","status":"Succeeded","startTime":"2023-03-14T05:10:59.905506Z","endTime":"2023-03-14T05:15:20.441478Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '1058' + - '579' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:48 GMT + - Tue, 14 Mar 2023 05:15:31 GMT etag: - - '"d900cfcd-0000-0600-0000-640ea4210000"' + - '"0000a1d8-0000-0600-0000-641002e80000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l + User-Agent: + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","name":"clitestbackup","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.68013Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.68013Z"},"identity":{"principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + headers: + cache-control: + - no-cache + content-length: + - '1063' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Mar 2023 05:15:31 GMT + etag: + - '"8301ebdb-0000-0600-0000-641002e80000"' expires: - '-1' pragma: @@ -523,19 +569,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 13 Mar 2023 04:18:49 GMT + - Tue, 14 Mar 2023 05:15:32 GMT duration: - - '4636852' + - '972752' expires: - '-1' ocp-aad-diagnostics-server-name: - - rUrRS36O2GuMPZQG2mefLnbZJNQl/V+iBBmCCg7Z7kQ= + - QCw865lGdPQrreYDn1AqT/EdOXcN6T595qz+hvFwMcc= ocp-aad-session-key: - - buJc4sMa254AM-MjpgfgJu-2DVAVysdvWoves2Z3MbraQUnV_nqvDELhRHDjczLpceRkhuinmoQkcr7CJ8HLVmHj2h0OEsTn86wnu57HWlNLK15d1mrFC1Oyw620I-2H.8qfruvsggf3jo_7cv82E6RpWjEKcYl3d50fdFs9wnp4 + - _WmXXQIUbfP6KCV_uN3hW5sAgo1GnC6bW0l7u0R1TGca2F_QslGIELwPrE-lqd5ZdUeKzQ2ao9tAuBdUi8-XKFys0Lp5wNkHfAfWzSyQG3fdLNCA6DB5Ij4TJU2eunU8.cbv1aA58pXBSuisOSJoPX5aAezbR-AZG31d_yWhDs94 pragma: - no-cache request-id: - - 0fc4d4bf-3a15-43fb-8926-8d6b5e2e5cee + - e1358e73-292f-4847-b333-f31eee29e175 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -579,7 +625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:48 GMT + - Tue, 14 Mar 2023 05:15:32 GMT expires: - '-1' pragma: @@ -619,19 +665,19 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:18:50.0642578Z","updatedOn":"2023-03-13T04:18:50.5232674Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:15:32.9781489Z","updatedOn":"2023-03-14T05:15:33.4241574Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache content-length: - - '977' + - '983' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:51 GMT + - Tue, 14 Mar 2023 05:15:34 GMT expires: - '-1' pragma: @@ -677,7 +723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:51 GMT + - Tue, 14 Mar 2023 05:15:34 GMT expires: - '-1' pragma: @@ -697,7 +743,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "50850276-2ce4-403d-a307-2a242e8a9192", "principalType": "ServicePrincipal"}}' + "principalId": "0d34d309-e819-41f9-a7ec-8b5bbadabc74", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -717,10 +763,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"50850276-2ce4-403d-a307-2a242e8a9192","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:18:52.6718077Z","updatedOn":"2023-03-13T04:18:53.1748155Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:15:35.9499712Z","updatedOn":"2023-03-14T05:15:36.4169740Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -729,7 +775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:18:57 GMT + - Tue, 14 Mar 2023 05:15:38 GMT expires: - '-1' pragma: @@ -766,29 +812,29 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","name":"clitestbackup2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:15:39.8079842Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.8079842Z"},"identity":{"principalId":"b8ae7cb8-5381-4be0-92e1-678d7d276a21","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1142' + - '1151' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:19:01 GMT + - Tue, 14 Mar 2023 05:15:40 GMT etag: - - '"d900d2cd-0000-0600-0000-640ea4350000"' + - '"830132dc-0000-0600-0000-641002fd0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -820,21 +866,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:19:31 GMT + - Tue, 14 Mar 2023 05:16:10 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -866,21 +912,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:00 GMT + - Tue, 14 Mar 2023 05:16:40 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -912,21 +958,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:20:31 GMT + - Tue, 14 Mar 2023 05:17:11 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -958,21 +1004,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:21:01 GMT + - Tue, 14 Mar 2023 05:17:41 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -1004,21 +1050,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:21:31 GMT + - Tue, 14 Mar 2023 05:18:11 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -1050,21 +1096,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:22:01 GMT + - Tue, 14 Mar 2023 05:18:41 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -1096,21 +1142,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:22:31 GMT + - Tue, 14 Mar 2023 05:19:11 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -1142,21 +1188,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T04:19:00.7364282Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Accepted","startTime":"2023-03-14T05:15:40.9407224Z"}' headers: cache-control: - no-cache content-length: - - '508' + - '511' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:02 GMT + - Tue, 14 Mar 2023 05:19:41 GMT etag: - - '"5f007073-0000-0600-0000-640ea4340000"' + - '"0000ded8-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -1188,21 +1234,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","name":"f5d78b8b-f2fb-409a-b389-75c3dc1c912f*C99E511FCE23DA0229AE71F92A4A36E80A4F5C1FFA0A5F25C0CE3DB1697EE946","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-13T04:19:00.7364282Z","endTime":"2023-03-13T04:23:13.9789874Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","name":"a95441f6-329c-47d9-86cb-f72fe221707f*629DBC6279E5161512B5303D497D95B01274BE358E1F54E4AC92EF90D288A45B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","status":"Succeeded","startTime":"2023-03-14T05:15:40.9407224Z","endTime":"2023-03-14T05:19:51.6543684Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '579' + - '582' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:31 GMT + - Tue, 14 Mar 2023 05:20:11 GMT etag: - - '"5f008173-0000-0600-0000-640ea5310000"' + - '"000068da-0000-0600-0000-641003f70000"' expires: - '-1' pragma: @@ -1234,21 +1280,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","name":"clitestbackup2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:15:39.8079842Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.8079842Z"},"identity":{"principalId":"b8ae7cb8-5381-4be0-92e1-678d7d276a21","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1061' + - '1070' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:32 GMT + - Tue, 14 Mar 2023 05:20:12 GMT etag: - - '"d90003d1-0000-0600-0000-640ea5310000"' + - '"830146df-0000-0600-0000-641003f70000"' expires: - '-1' pragma: @@ -1315,19 +1361,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 13 Mar 2023 04:23:32 GMT + - Tue, 14 Mar 2023 05:20:12 GMT duration: - - '3705994' + - '897495' expires: - '-1' ocp-aad-diagnostics-server-name: - - MHAp+p4ArZovyJRyk+OHjQ7Llu34iy3pViC6SKeofc0= + - S4Qdzfh6wGIK1FXXBhSnMMCdVuqd5/mRQmyoRtmydCY= ocp-aad-session-key: - - GPflBmDx3JZusnb9bWesxIhia8FxUiVAQWsvlM6e7DcH3wowmG1DaH_KxuLf4MNngHnG5IdWXOE6kdVGj__gFtTAxvKB1mpt9DhZLGMCS8-W4knKkxWqN-TXaezySepn.qV2JzqI-pd8oT-3uVQvMS_kDODEvZL1r1uUg2lfNzD0 + - 5fM8jdjdnNow_sjDvDM-tEgmHd57C8CbGl4UalayO7gIyiCYZpW8-IGtXE1NqoLsyH-emANTZXWhGCxhUsnsID29fg_bXSf85LZRJK3J2za7uRpIZktDJM2jDAXqJPS3.y66dIC-C_dqVvNPbt3mkAqOJ44DyuZAYqvlzPc5nEGw pragma: - no-cache request-id: - - d33dfb20-75ae-4dca-a89d-dd1c765e6a5a + - 90fab065-c033-4dc1-a78b-88fd7b8c473e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1371,7 +1417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:33 GMT + - Tue, 14 Mar 2023 05:20:11 GMT expires: - '-1' pragma: @@ -1411,19 +1457,19 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:23:34.0152556Z","updatedOn":"2023-03-13T04:23:34.4712797Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:20:13.5358214Z","updatedOn":"2023-03-14T05:20:13.9488317Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' headers: cache-control: - no-cache content-length: - - '979' + - '985' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:37 GMT + - Tue, 14 Mar 2023 05:20:14 GMT expires: - '-1' pragma: @@ -1435,7 +1481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1469,7 +1515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:37 GMT + - Tue, 14 Mar 2023 05:20:14 GMT expires: - '-1' pragma: @@ -1489,7 +1535,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "71a21bc6-d034-439d-bc14-a5b9eca04814", "principalType": "ServicePrincipal"}}' + "principalId": "b8ae7cb8-5381-4be0-92e1-678d7d276a21", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -1509,10 +1555,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T04:23:37.5878607Z","updatedOn":"2023-03-13T04:23:38.0178672Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"b8ae7cb8-5381-4be0-92e1-678d7d276a21","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:20:14.8734843Z","updatedOn":"2023-03-14T05:20:15.3764959Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' headers: cache-control: - no-cache @@ -1521,7 +1567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:23:39 GMT + - Tue, 14 Mar 2023 05:20:17 GMT expires: - '-1' pragma: @@ -1553,21 +1599,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg","name":"clitestamg","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:14:45.9408591Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:14:45.9408591Z"},"identity":{"principalId":"50850276-2ce4-403d-a307-2a242e8a9192","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup","name":"clitestbackup","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.68013Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.68013Z"},"identity":{"principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1058' + - '1063' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:25:39 GMT + - Tue, 14 Mar 2023 05:22:16 GMT etag: - - '"d900cfcd-0000-0600-0000-640ea4210000"' + - '"8301ebdb-0000-0600-0000-641002e80000"' expires: - '-1' pragma: @@ -1601,10 +1647,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":25,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:43.008518979Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:43.008519079Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"SLQFzba4z","title":"Test Folder","url":"/dashboards/f/SLQFzba4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:22:19.944762479Z","updatedBy":"example@example.com","updated":"2023-03-14T05:22:19.944762579Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -1613,14 +1659,14 @@ interactions: content-length: - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fNFtyleMRQLbaeBBzZlxRA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GeGXdW4QIAWL1oEfAkKXQw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:43 GMT + - Tue, 14 Mar 2023 05:22:19 GMT expires: - '-1' pragma: @@ -1628,8 +1674,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681541.891.437.332621|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771338.848.437.59504|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1658,10 +1704,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":3,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"83wFkb-Vz","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -1672,14 +1718,14 @@ interactions: content-length: - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7PXqG5bbG0Ska1kaiUrGjw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6oI0TKvQmFUVMUQTE911jQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:43 GMT + - Tue, 14 Mar 2023 05:22:20 GMT expires: - '-1' pragma: @@ -1687,7 +1733,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681544.297.441.247174|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771341.217.439.100201|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1714,10 +1760,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"17cfd18f1b16d23fa21cfa7e06091904"}' + string: '{"message":"id is invalid","traceID":"86c4e6c5d9657afad4d9eac890436e6e"}' headers: cache-control: - no-cache @@ -1726,14 +1772,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-qX7pl7/cq6xN4XQ6FYhNTg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hnRhfdYKNTsnjCJXJIKu8w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:44 GMT + - Tue, 14 Mar 2023 05:22:20 GMT expires: - '-1' pragma: @@ -1741,7 +1787,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681544.614.442.840404|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771341.544.440.171961|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1768,7 +1814,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/Test%20Folder response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -1780,14 +1826,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EhOu6su0CE/LM13g8LlrNQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-29fz9DJBrRY83pvPxGn80w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:44 GMT + - Tue, 14 Mar 2023 05:22:21 GMT expires: - '-1' pragma: @@ -1795,7 +1841,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681545.205.436.580845|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771341.995.437.943230|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1822,10 +1868,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"3OpsFo-Vk","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"SLQFzba4z","title":"Test Folder"}]' headers: cache-control: @@ -1835,14 +1881,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pDAjDRi2/epSEAxbTdP4PA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1XlO857F1D8SW3XvzbBZ/Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:44 GMT + - Tue, 14 Mar 2023 05:22:21 GMT expires: - '-1' pragma: @@ -1850,8 +1896,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681545.383.442.146402|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771342.514.442.16582|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1864,7 +1910,7 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard"}, "folderId": 25, "overwrite": + body: '{"dashboard": {"title": "Test Dashboard"}, "folderId": 24, "overwrite": false}' headers: Accept: @@ -1880,10 +1926,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"y92yFT-Vz","url":"/d/y92yFT-Vz/test-dashboard","version":1}' + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"35uFkx-Vk","url":"/d/35uFkx-Vk/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -1892,14 +1938,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-UyuPXyVt8D6dB3UYkyrrMw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xGleqAESeVEoxbaR6h5XjA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:44 GMT + - Tue, 14 Mar 2023 05:22:21 GMT expires: - '-1' pragma: @@ -1907,8 +1953,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681545.575.441.533111|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771342.7.440.945862|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1934,12 +1980,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"7LpyKTaVk","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"83wFkb-Vz","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -1950,14 +1996,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aJrKrUmA7d2Fc8aJmZB6cw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OoLRk1nSPhbamajxqrQ6JQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:45 GMT + - Tue, 14 Mar 2023 05:22:22 GMT expires: - '-1' pragma: @@ -1965,8 +2011,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681545.859.437.252193|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771342.999.440.98112|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1992,55 +2038,55 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=1 + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":4,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":5,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":26,"uid":"y92yFT-Vz","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":25,"folderUid":"3OpsFo-Vk","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"35uFkx-Vk","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/35uFkx-Vk/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":24,"folderUid":"SLQFzba4z","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/SLQFzba4z/test-folder","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nXShY/GAnxpGlRCgpVzjPQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-oESoIXwLsdmXBhl/0xwshA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:45 GMT + - Tue, 14 Mar 2023 05:22:22 GMT expires: - '-1' pragma: @@ -2048,7 +2094,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681546.83.442.800892|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771343.17.443.82492|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2077,12 +2123,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/35uFkx-Vk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:44Z","updated":"2023-03-13T04:25:44Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":25,"folderUid":"3OpsFo-Vk","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":26,"title":"Test - Dashboard","uid":"y92yFT-Vz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/35uFkx-Vk/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:22:21Z","updated":"2023-03-14T05:22:21Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":24,"folderUid":"SLQFzba4z","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/SLQFzba4z/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test + Dashboard","uid":"35uFkx-Vk","version":1}}' headers: cache-control: - no-cache @@ -2091,14 +2137,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3qfXAuzZfUfJnKUkTSfmEw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-S2sAKFBVjVsWQuQoxp+D+A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:46 GMT + - Tue, 14 Mar 2023 05:22:22 GMT expires: - '-1' pragma: @@ -2106,7 +2152,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681546.998.441.960347|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771343.338.435.981375|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2133,7 +2179,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=2 + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/search/?type=dash-db&limit=5000&page=2 response: body: string: '[]' @@ -2145,14 +2191,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WCclOFR878Ch+4vf+CIIPQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nyGgb8ZU87hV8WLucEVCZg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:46 GMT + - Tue, 14 Mar 2023 05:22:22 GMT expires: - '-1' pragma: @@ -2160,7 +2206,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681547.166.435.184108|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771343.514.441.168474|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2187,11 +2233,11 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search/?type=dash-folder + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/search/?type=dash-folder response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor","uri":"db/azure-monitor","url":"/dashboards/f/az-mon/azure-monitor","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":13,"uid":"geneva","title":"Geneva","uri":"db/geneva","url":"/dashboards/f/geneva/geneva","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":25,"uid":"3OpsFo-Vk","title":"Test - Folder","uri":"db/test-folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor","uri":"db/azure-monitor","url":"/dashboards/f/az-mon/azure-monitor","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":12,"uid":"geneva","title":"Geneva","uri":"db/geneva","url":"/dashboards/f/geneva/geneva","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0},{"id":24,"uid":"SLQFzba4z","title":"Test + Folder","uri":"db/test-folder","url":"/dashboards/f/SLQFzba4z/test-folder","slug":"","type":"dash-folder","tags":[],"isStarred":false,"sortMeta":0}]' headers: cache-control: - no-cache @@ -2200,14 +2246,14 @@ interactions: content-length: - '546' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ft9yTg3e39o5wi4cTn/jNA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6GvAQMXYM3uKA7V2/puW7A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:46 GMT + - Tue, 14 Mar 2023 05:22:22 GMT expires: - '-1' pragma: @@ -2215,7 +2261,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681547.335.442.284424|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771343.678.442.717164|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2242,10 +2288,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/SLQFzba4z response: body: - string: '{"id":25,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:43Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:43Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"SLQFzba4z","title":"Test Folder","url":"/dashboards/f/SLQFzba4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:22:19Z","updatedBy":"example@example.com","updated":"2023-03-14T05:22:19Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -2254,14 +2300,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-82nporEnSjfxnflCrUFfCQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WSexFpTd6H6IHSK7ZohDfA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:46 GMT + - Tue, 14 Mar 2023 05:22:22 GMT expires: - '-1' pragma: @@ -2269,7 +2315,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681547.507.443.746311|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771343.841.442.169867|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2296,12 +2342,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk/permissions + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/SLQFzba4z/permissions response: body: - string: '[{"folderId":25,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Viewer","permission":1,"permissionName":"View","uid":"3OpsFo-Vk","title":"Test - Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/3OpsFo-Vk/test-folder","inherited":false},{"folderId":25,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Editor","permission":2,"permissionName":"Edit","uid":"3OpsFo-Vk","title":"Test - Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/3OpsFo-Vk/test-folder","inherited":false}]' + string: '[{"folderId":24,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Viewer","permission":1,"permissionName":"View","uid":"SLQFzba4z","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/SLQFzba4z/test-folder","inherited":false},{"folderId":24,"created":"2017-06-20T00:00:00Z","updated":"2017-06-20T00:00:00Z","userId":0,"userLogin":"","userEmail":"","userAvatarUrl":"","teamId":0,"teamEmail":"","teamAvatarUrl":"","team":"","role":"Editor","permission":2,"permissionName":"Edit","uid":"SLQFzba4z","title":"Test + Folder","slug":"test-folder","isFolder":true,"url":"/dashboards/f/SLQFzba4z/test-folder","inherited":false}]' headers: cache-control: - no-cache @@ -2310,14 +2356,14 @@ interactions: content-length: - '783' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OUiRI0T2e0S2Ka8v2yzDYg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-riV00+2NO1I5O1jFZSCqxA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:46 GMT + - Tue, 14 Mar 2023 05:22:23 GMT expires: - '-1' pragma: @@ -2325,7 +2371,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681547.668.438.847692|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771344.014.437.912928|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2352,10 +2398,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"072fc4c2b09c9f2eff445fe9e607b7e0"}' + string: '{"message":"id is invalid","traceID":"cd632c171617480d17b041b09dce9017"}' headers: cache-control: - no-cache @@ -2364,14 +2410,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PQBYTwLRtGK7FSmuweDVgA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FLv6ai+mtIBME2X/kVstlw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:47 GMT + - Tue, 14 Mar 2023 05:22:23 GMT expires: - '-1' pragma: @@ -2379,7 +2425,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681548.02.442.634032|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771344.353.442.19614|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2406,7 +2452,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/Test%20Folder response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -2418,14 +2464,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iVSmwlc6+3EjGRQjeJAPhA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XD/rZklg4n5LhZsn4uPTtQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:47 GMT + - Tue, 14 Mar 2023 05:22:23 GMT expires: - '-1' pragma: @@ -2433,8 +2479,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681548.202.435.231671|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771344.544.441.95125|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2460,10 +2506,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"3OpsFo-Vk","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"SLQFzba4z","title":"Test Folder"}]' headers: cache-control: @@ -2473,14 +2519,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vmu8t+YkPZAcn089p2WS2A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3+llmPiMgKoBU4hu38PWtQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:47 GMT + - Tue, 14 Mar 2023 05:22:23 GMT expires: - '-1' pragma: @@ -2488,7 +2534,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681548.445.439.366552|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771344.724.438.942367|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2517,7 +2563,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/SLQFzba4z response: body: string: '' @@ -2529,14 +2575,14 @@ interactions: content-length: - '0' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GfZYmda/tsSbC14Wd5gDcw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rVojutB1uJkRAdoKyvBNpw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:47 GMT + - Tue, 14 Mar 2023 05:22:24 GMT expires: - '-1' pragma: @@ -2544,8 +2590,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681548.652.441.62870|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678771344.912.443.136587|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2571,10 +2617,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"83wFkb-Vz","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2584,14 +2630,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jZrqSxZnpqQ/b854mAGvjA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-v0KlXqPQ+qWr4NJqhYZ9/Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:48 GMT + - Tue, 14 Mar 2023 05:22:24 GMT expires: - '-1' pragma: @@ -2599,8 +2645,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681549.134.440.270292|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771345.274.435.37403|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2628,7 +2674,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/uid/7LpyKTaVk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources/uid/83wFkb-Vz response: body: string: '{"id":3,"message":"Data source deleted"}' @@ -2640,14 +2686,14 @@ interactions: content-length: - '40' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VbeHuJ42mH+/vQIvwEdMpw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AB6sXGR5TwmVfYE8TVPsTw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:48 GMT + - Tue, 14 Mar 2023 05:22:24 GMT expires: - '-1' pragma: @@ -2655,7 +2701,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681549.306.440.861914|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771345.449.441.803751|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2669,10 +2715,10 @@ interactions: code: 200 message: OK - request: - body: '{"id": 25, "uid": "3OpsFo-Vk", "title": "Test Folder", "url": "/dashboards/f/3OpsFo-Vk/test-folder", + body: '{"id": 24, "uid": "SLQFzba4z", "title": "Test Folder", "url": "/dashboards/f/SLQFzba4z/test-folder", "hasAcl": false, "canSave": true, "canEdit": true, "canAdmin": true, "canDelete": - true, "createdBy": "example@example.com", "created": "2023-03-13T04:25:43Z", - "updatedBy": "example@example.com", "updated": "2023-03-13T04:25:43Z", "version": + true, "createdBy": "example@example.com", "created": "2023-03-14T05:22:19Z", + "updatedBy": "example@example.com", "updated": "2023-03-14T05:22:19Z", "version": 1, "parentUid": ""}' headers: Accept: @@ -2688,26 +2734,26 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":27,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:48.630069129Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:48.630069129Z","version":1,"parentUid":""}' + string: '{"id":26,"uid":"SLQFzba4z","title":"Test Folder","url":"/dashboards/f/SLQFzba4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:22:24.80898739Z","updatedBy":"example@example.com","updated":"2023-03-14T05:22:24.80898749Z","version":1,"parentUid":""}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '352' + - '350' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-N7nkf3UHcIy7cbsHDq5ljA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-RmLlDPpnXeJIJjyImRNGaA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:48 GMT + - Tue, 14 Mar 2023 05:22:24 GMT expires: - '-1' pragma: @@ -2715,7 +2761,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681549.606.438.484543|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771345.784.440.602782|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2742,10 +2788,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/3OpsFo-Vk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/SLQFzba4z response: body: - string: '{"id":27,"uid":"3OpsFo-Vk","title":"Test Folder","url":"/dashboards/f/3OpsFo-Vk/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:48Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:48Z","version":1,"parentUid":""}' + string: '{"id":26,"uid":"SLQFzba4z","title":"Test Folder","url":"/dashboards/f/SLQFzba4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:22:24Z","updatedBy":"example@example.com","updated":"2023-03-14T05:22:24Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -2754,14 +2800,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+6XHLteA7cvtJKpCelRl1Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-K5C6wrAEVREb9m5e932S3w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:48 GMT + - Tue, 14 Mar 2023 05:22:25 GMT expires: - '-1' pragma: @@ -2769,7 +2815,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681549.794.441.622740|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771345.986.435.443774|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2783,8 +2829,8 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"id": null, "title": "Test Dashboard", "uid": "y92yFT-Vz", - "version": 1}, "folderId": 27, "overwrite": true}' + body: '{"dashboard": {"id": null, "title": "Test Dashboard", "uid": "35uFkx-Vk", + "version": 1}, "folderId": 26, "overwrite": true}' headers: Accept: - '*/*' @@ -2799,10 +2845,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/db + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":28,"slug":"test-dashboard","status":"success","uid":"y92yFT-Vz","url":"/d/y92yFT-Vz/test-dashboard","version":1}' + string: '{"id":27,"slug":"test-dashboard","status":"success","uid":"35uFkx-Vk","url":"/d/35uFkx-Vk/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -2811,14 +2857,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2jwBoDR7NQIQNlJe6eehrQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3UCx1N+LztBlucsRi2oxjg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:49 GMT + - Tue, 14 Mar 2023 05:22:25 GMT expires: - '-1' pragma: @@ -2826,7 +2872,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681549.965.441.628005|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771346.156.439.247846|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2840,7 +2886,7 @@ interactions: code: 200 message: OK - request: - body: '{"id": 3, "uid": "7LpyKTaVk", "orgId": 1, "name": "Test Azure Monitor Data + body: '{"id": 3, "uid": "83wFkb-Vz", "orgId": 1, "name": "Test Azure Monitor Data Source", "type": "grafana-azure-monitor-datasource", "typeName": "Azure Monitor", "typeLogoUrl": "public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg", "access": "proxy", "url": "", "user": "", "database": "", "basicAuth": false, @@ -2860,10 +2906,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":4,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":4,"uid":"83wFkb-Vz","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":4,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -2874,14 +2920,14 @@ interactions: content-length: - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8CGJk/V4EIz7lD0SUTKE5A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-IrPqHn3uSTV8WNIqk05K2Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:49 GMT + - Tue, 14 Mar 2023 05:22:25 GMT expires: - '-1' pragma: @@ -2889,7 +2935,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681550.175.437.718005|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771346.364.442.321828|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2923,10 +2969,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources response: body: - string: '{"message":"data source with the same name already exists","traceID":"0cbe7c104e3b15d07e247cd768af6d51"}' + string: '{"message":"data source with the same name already exists","traceID":"e6899c0e83be88ca5fe4e964ef8ecd9e"}' headers: cache-control: - no-cache @@ -2935,14 +2981,14 @@ interactions: content-length: - '104' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-uRdfWFrxnweion+uA3vamg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-szaqhCgHt+Tm3qjj22Wh5g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:49 GMT + - Tue, 14 Mar 2023 05:22:25 GMT expires: - '-1' pragma: @@ -2950,7 +2996,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681550.397.442.527756|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771346.573.440.826149|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2983,10 +3029,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources response: body: - string: '{"message":"data source with the same name already exists","traceID":"114568390278d84549320b54f0bdccdd"}' + string: '{"message":"data source with the same name already exists","traceID":"5af2511785188dab51963be4eb856c16"}' headers: cache-control: - no-cache @@ -2995,14 +3041,14 @@ interactions: content-length: - '104' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nOQbNQBSlqW7cXROrJKdew';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6kZsCEonSqhruAQANztIjw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:49 GMT + - Tue, 14 Mar 2023 05:22:25 GMT expires: - '-1' pragma: @@ -3010,7 +3056,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681550.565.443.438793|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771346.751.440.778265|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3037,10 +3083,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":4,"uid":"7LpyKTaVk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":4,"uid":"83wFkb-Vz","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -3050,14 +3096,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-oIMDU/TCcMUFOaj1GNJvSA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jq7zPp0mmK5qnYIovJLVLQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:49 GMT + - Tue, 14 Mar 2023 05:22:26 GMT expires: - '-1' pragma: @@ -3065,8 +3111,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681550.849.441.22319|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678771347.055.437.398287|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3092,10 +3138,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/id/Test%20Folder + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"30a9ef3764f21852954159ce89bde4f0"}' + string: '{"message":"id is invalid","traceID":"c69ad276b4493d5c537f86e83da12b47"}' headers: cache-control: - no-cache @@ -3104,14 +3150,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-jk6geE4Ir8iPbrpmgT5afw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-os+yvemfnY8NUdB4V64Rxw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:50 GMT + - Tue, 14 Mar 2023 05:22:26 GMT expires: - '-1' pragma: @@ -3119,7 +3165,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681551.128.441.983478|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771347.347.441.548232|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3146,7 +3192,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders/Test%20Folder + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders/Test%20Folder response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -3158,14 +3204,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vGjx0eCpOjLm+wNUCti9Nw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-NeFMvXZcwG8g3RM3Tpr7Og';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:50 GMT + - Tue, 14 Mar 2023 05:22:26 GMT expires: - '-1' pragma: @@ -3173,8 +3219,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681551.302.438.9607|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678771347.535.435.716110|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3200,10 +3246,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":13,"uid":"geneva","title":"Geneva"},{"id":27,"uid":"3OpsFo-Vk","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":26,"uid":"SLQFzba4z","title":"Test Folder"}]' headers: cache-control: @@ -3213,14 +3259,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lvkjoxAu2KiCWytwEwYZKQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-uQSnLCySq73+Lj+DjFJ+6A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:50 GMT + - Tue, 14 Mar 2023 05:22:26 GMT expires: - '-1' pragma: @@ -3228,7 +3274,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681551.494.441.774350|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771347.735.441.183862|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3255,12 +3301,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/35uFkx-Vk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:49Z","updated":"2023-03-13T04:25:49Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":27,"folderUid":"3OpsFo-Vk","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":28,"title":"Test - Dashboard","uid":"y92yFT-Vz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/35uFkx-Vk/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:22:25Z","updated":"2023-03-14T05:22:25Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"SLQFzba4z","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/SLQFzba4z/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test + Dashboard","uid":"35uFkx-Vk","version":1}}' headers: cache-control: - no-cache @@ -3269,14 +3315,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LCuSRdnkyFljv4FzVM0TtQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5Bw4uafNomI3Lg3FLcUatQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:50 GMT + - Tue, 14 Mar 2023 05:22:27 GMT expires: - '-1' pragma: @@ -3284,8 +3330,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681551.792.443.543668|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771348.03.435.949576|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3313,21 +3359,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T04:18:59.6319372Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T04:18:59.6319372Z"},"identity":{"principalId":"71a21bc6-d034-439d-bc14-a5b9eca04814","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestbackup2","name":"clitestbackup2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:15:39.8079842Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.8079842Z"},"identity":{"principalId":"b8ae7cb8-5381-4be0-92e1-678d7d276a21","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1061' + - '1070' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 04:25:50 GMT + - Tue, 14 Mar 2023 05:22:27 GMT etag: - - '"d90003d1-0000-0600-0000-640ea5310000"' + - '"830146df-0000-0600-0000-641003f70000"' expires: - '-1' pragma: @@ -3359,10 +3405,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"}]' + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":15,"uid":"geneva","title":"Geneva"}]' headers: cache-control: - no-cache @@ -3371,14 +3417,14 @@ interactions: content-length: - '91' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-78Vy/O7WVSgkUuBU0boy2Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yBDFEYBbmwpxI7Lm9VWVdA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:52 GMT + - Tue, 14 Mar 2023 05:22:29 GMT expires: - '-1' pragma: @@ -3386,7 +3432,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681552.654.442.209469|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771348.666.440.399867|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3413,7 +3459,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/datasources + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/datasources response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure @@ -3427,14 +3473,14 @@ interactions: content-length: - '759' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FghiwSJJpO6oIZKmjTYgNA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Pofp470QaAAGykDe6PGVxQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:53 GMT + - Tue, 14 Mar 2023 05:22:29 GMT expires: - '-1' pragma: @@ -3442,7 +3488,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681554.164.442.327717|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771350.269.435.848784|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3469,12 +3515,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/datasources + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/datasources response: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"7LpyKTaVk","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":4,"uid":"83wFkb-Vz","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -3485,14 +3531,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-a+/MQgAT3sTo3WqPPPi6Jw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-tA9E9cBruS8rpv/g3toF4Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:53 GMT + - Tue, 14 Mar 2023 05:22:29 GMT expires: - '-1' pragma: @@ -3500,7 +3546,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681554.363.435.426155|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771350.639.440.637682|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3527,55 +3573,55 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":4,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":19,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":5,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":28,"uid":"y92yFT-Vz","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":27,"folderUid":"3OpsFo-Vk","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"35uFkx-Vk","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/35uFkx-Vk/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":26,"folderUid":"SLQFzba4z","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/SLQFzba4z/test-folder","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GXO1p1G9A+PeH2wBzt2qWQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xybeZ1WIAXwbVJUAiKgbrg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:53 GMT + - Tue, 14 Mar 2023 05:22:29 GMT expires: - '-1' pragma: @@ -3583,8 +3629,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681554.55.440.785977|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678771350.812.436.553203|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -3612,7 +3658,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=2 response: body: string: '[]' @@ -3624,14 +3670,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/xY3+Z5SsKbCvo0cx0Wryw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lqYJna0ahUCFfw/iweGv5A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:53 GMT + - Tue, 14 Mar 2023 05:22:30 GMT expires: - '-1' pragma: @@ -3639,8 +3685,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681554.742.441.27126|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678771350.998.440.473875|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -3666,12 +3712,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/OSBzdgnnz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/OSBzdgnnz response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"agent-qos\",\"url\":\"/d/OSBzdgnnz/agent-qos\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:25Z\",\"updated\":\"2023-03-13T04:18:25Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"agentQoS.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"agent-qos\",\"url\":\"/d/OSBzdgnnz/agent-qos\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-14T05:14:50Z\",\"updated\":\"2023-03-14T05:14:50Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":12,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"agentQoS.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, - 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"type\":\"dashboard\"}]},\"description\":\"\",\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":23,\"links\":[],\"panels\":[{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"options\":{\"content\":\"\\u003cdiv + 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"type\":\"dashboard\"}]},\"description\":\"\",\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":19,\"links\":[],\"panels\":[{\"datasource\":null,\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":0},\"id\":2,\"options\":{\"content\":\"\\u003cdiv style=\\\"padding: 1em\\\"\\u003e\\n \\u003cp\\u003eThis dashboard helps understand and diagnose monitoring agent health. It gives an overview of:\\u003cbr\\u003e\\u003c/p\\u003e\\n \ \\u003cul\\u003e\\n \\u003cli\\u003eData Quality (Data loss and latency @@ -3808,14 +3854,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rK/BHmT+g0GX5l2N7RjYPg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Cs77Ch6ORFtpJKsfEJJfOw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:53 GMT + - Tue, 14 Mar 2023 05:22:30 GMT expires: - '-1' pragma: @@ -3823,7 +3869,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681554.913.437.255284|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771351.206.435.889027|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3852,12 +3898,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/54KhiZ7nz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/54KhiZ7nz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AKSLinuxSample.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AKSLinuxSample.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":17,"links":[],"liveNow":false,"panels":[{"datasource":null,"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":6,"options":{"content":"This + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":14,"links":[],"liveNow":false,"panels":[{"datasource":null,"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":6,"options":{"content":"This dashboard shows telemetry from the machine running the AKSGenevaSample Application.\n\u003cbr\u003e\nThe dashboard will contain data only if your service (AKSGenevaSample) is running and the Geneva Agent is set up correctly.\n\u003cbr\u003e\nTo set up a sample @@ -3880,14 +3926,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8t9hsxlVN4X/sZtXmnzIWg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Rj/rtx5Wz9TcVDqpsCIQZQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:54 GMT + - Tue, 14 Mar 2023 05:22:30 GMT expires: - '-1' pragma: @@ -3895,7 +3941,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681555.136.441.730221|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771351.423.441.965592|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3924,12 +3970,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6uRDjTNnz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/6uRDjTNnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"app-detail","url":"/d/6uRDjTNnz/app-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AppDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"app-detail","url":"/d/6uRDjTNnz/app-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"AppDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":18,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":20,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster and an application, this widget shows it''s health timeline - time when the application sent Ok, Warning and Error as it''s health status","fieldConfig":{"defaults":{"color":{"mode":"continuous-GrYlRd"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":0,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]}]},"gridPos":{"h":15,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"auto","tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"customSeriesNaming":"{HealthState} @@ -3963,14 +4009,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-//20aiWJDubxtyon9FVUnw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ayNOwtJ/ZMSFIdPrR5kMSQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:54 GMT + - Tue, 14 Mar 2023 05:22:30 GMT expires: - '-1' pragma: @@ -3978,7 +4024,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681555.326.443.357136|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771351.624.443.649012|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4007,13 +4053,13 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/dyzn5SK7z + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/dyzn5SK7z response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-alert-consumption\",\"url\":\"/d/dyzn5SK7z/azure-alert-consumption\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:24Z\",\"updated\":\"2023-03-13T04:18:24Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-alert-consumption\",\"url\":\"/d/dyzn5SK7z/azure-alert-consumption\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-14T05:14:49Z\",\"updated\":\"2023-03-14T05:14:49Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"v1Alerts.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__elements\":[],\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"8.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"A - summary of all alerts for the subscription and other filters selected\",\"editable\":true,\"id\":4,\"links\":[],\"liveNow\":false,\"panels\":[{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Total + summary of all alerts for the subscription and other filters selected\",\"editable\":true,\"id\":5,\"links\":[],\"liveNow\":false,\"panels\":[{\"datasource\":{\"type\":\"grafana-azure-monitor-datasource\",\"uid\":\"${ds}\"},\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"mappings\":[],\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]}},\"overrides\":[{\"matcher\":{\"id\":\"byName\",\"options\":\"Total Alerts\"},\"properties\":[{\"id\":\"links\",\"value\":[{\"targetBlank\":false,\"title\":\"\",\"url\":\"d/dyzn5SK7z/alert-consumption?${sub:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${rg:queryparam}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF${__url_time_range}\uFEFF\uFEFF\uFEFF\uFEFF\uFEFF\\u0026var-mc=Fired\\u0026var-mc=Resolved\\u0026var-as=New\\u0026var-as=Acknowledged\\u0026var-as=Closed\\u0026var-sev=Sev0\\u0026var-sev=Sev1\\u0026var-sev=Sev2\\u0026var-sev=Sev3\\u0026var-sev=Sev4\\u0026${__url_time_range}\"}]}]}]},\"gridPos\":{\"h\":4,\"w\":2,\"x\":0,\"y\":0},\"id\":4,\"options\":{\"colorMode\":\"background\",\"graphMode\":\"area\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":true},\"textMode\":\"value_and_name\"},\"targets\":[{\"azureMonitor\":{\"dimensionFilters\":[],\"timeGrain\":\"auto\"},\"azureResourceGraph\":{\"query\":\"alertsmanagementresources\\r\\n| where type == \\\"microsoft.alertsmanagement/alerts\\\"\\r\\n| where todatetime(properties.essentials.lastModifiedDateTime) \\u003e= $__timeFrom and todatetime(properties.essentials.lastModifiedDateTime) @@ -4094,14 +4140,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-0DaLSDQjp+OmTyOwal4+6w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GCmi2rcOjOSyA5GC4V9eIA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:54 GMT + - Tue, 14 Mar 2023 05:22:30 GMT expires: - '-1' pragma: @@ -4109,8 +4155,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681555.509.439.900706|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771351.82.437.154084|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -4138,15 +4184,15 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Yo38mcvnz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/Yo38mcvnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsights.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Apps via different metrics for app monitoring through Application - Insights.","editable":true,"id":10,"links":[],"liveNow":false,"panels":[{"collapsed":false,"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":52,"panels":[],"title":"Azure + Insights.","editable":true,"id":8,"links":[],"liveNow":false,"panels":[{"collapsed":false,"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":52,"panels":[],"title":"Azure Portal Links","type":"row"},{"gridPos":{"h":3,"w":5,"x":0,"y":1},"id":10,"options":{"content":"\u003ca style=\"color: inherit;\" href=\"https://portal.azure.com/#@${tenant}/resource/subscriptions/${sub}/resourceGroups/${rg}/providers/microsoft.insights/components/${res}/overview\" target=\"_blank\"\u003e\n \u003cdiv\u003e\n \u003ch3 style=\"color: #a16feb\"\u003e @@ -4284,14 +4330,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-j2oLbBXsYKtkTfETuQX1kw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VPPkd2fwb6hZZzt2YeOquA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:54 GMT + - Tue, 14 Mar 2023 05:22:31 GMT expires: - '-1' pragma: @@ -4299,7 +4345,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681555.734.442.937514|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771352.041.442.685587|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4328,13 +4374,13 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AppInsightsAvTestGeoMap + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/AppInsightsAvTestGeoMap response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:49Z","updated":"2023-03-14T05:14:49Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"appInsightsGeoMap.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"geomap","name":"Geomap","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"8.5.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"timeseries","name":"Time - series","type":"panel","version":""}],"editable":true,"id":11,"iteration":null,"liveNow":false,"panels":[{"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":18,"options":{"content":"\u003cdiv + series","type":"panel","version":""}],"editable":true,"id":2,"iteration":null,"liveNow":false,"panels":[{"gridPos":{"h":4,"w":24,"x":0,"y":0},"id":18,"options":{"content":"\u003cdiv style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003e This dashboard helps you visualize data on availability tests for your Application Insights. Note that even if you have an App Insights resource configured, if you have @@ -4487,14 +4533,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Bq53xV1469bzQary7S2bZg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LeFX7g6nT5xlkRUNvXXmQw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:55 GMT + - Tue, 14 Mar 2023 05:22:31 GMT expires: - '-1' pragma: @@ -4502,7 +4548,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681555.998.436.848849|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771352.308.441.426208|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4531,14 +4577,14 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/INH9berMk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/INH9berMk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"cosmosdb.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Cosmos DB overview, throughput, requests, - storage, availability latency, system and account management.","editable":true,"id":7,"links":[],"panels":[{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":1},"hiddenSeries":false,"id":2,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + storage, availability latency, system and account management.","editable":true,"id":9,"links":[],"panels":[{"collapsed":true,"datasource":"${ds}","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[{"aliasColors":{},"bars":false,"dashLength":10,"dashes":false,"datasource":"${ds}","fieldConfig":{"defaults":{"color":{},"custom":{},"thresholds":{"mode":"absolute","steps":[]}},"overrides":[]},"fill":1,"fillGradient":0,"gridPos":{"h":9,"w":12,"x":0,"y":1},"hiddenSeries":false,"id":2,"legend":{"avg":false,"current":false,"max":false,"min":false,"show":true,"total":true,"values":true},"lines":true,"linewidth":1,"nullPointMode":"null","options":{"alertThreshold":true},"percentage":false,"pointradius":2,"points":false,"renderer":"flot","seriesOverrides":[],"spaceLength":10,"stack":false,"steppedLine":false,"targets":[{"azureMonitor":{"aggOptions":["Count"],"aggregation":"Count","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"DatabaseName","value":"DatabaseName"},{"text":"CollectionName","value":"CollectionName"},{"text":"Region","value":"Region"},{"text":"StatusCode","value":"StatusCode"},{"text":"OperationType","value":"OperationType"},{"text":"Status","value":"Status"}],"metricDefinition":"$ns","metricName":"TotalRequests","metricNamespace":"Microsoft.DocumentDB/databaseAccounts","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure @@ -4645,14 +4691,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MxNANndzPGyf8Qxe2p24Sw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-T5ia9ZoBtWN5xNDNXIoxHQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:55 GMT + - Tue, 14 Mar 2023 05:22:31 GMT expires: - '-1' pragma: @@ -4660,7 +4706,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681556.217.440.654346|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771352.542.435.656176|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -4689,14 +4735,14 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/8UDB1s3Gk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/8UDB1s3Gk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"dataexplorercluster.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"7.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"graph","name":"Graph","type":"panel","version":""},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Data Explorer Cluster Resource overview, - key mettrics, usage, tables, cache and ingestion.","editable":true,"id":8,"links":[],"panels":[{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":6,"panels":[],"title":"Overview","type":"row"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":0,"y":1},"id":4,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"KeepAlive","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 + key mettrics, usage, tables, cache and ingestion.","editable":true,"id":10,"links":[],"panels":[{"collapsed":false,"datasource":"$ds","gridPos":{"h":1,"w":24,"x":0,"y":0},"id":6,"panels":[],"title":"Overview","type":"row"},{"datasource":"$ds","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]}},"overrides":[]},"gridPos":{"h":5,"w":3,"x":0,"y":1},"id":4,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"auto"},"targets":[{"azureMonitor":{"aggOptions":["Average"],"aggregation":"Average","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[],"metricDefinition":"$ns","metricName":"KeepAlive","metricNamespace":"Microsoft.Kusto/clusters","resourceGroup":"$rg","resourceName":"$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 hours","value":"PT12H"},{"text":"1 day","value":"P1D"}],"top":"10"},"queryType":"Azure @@ -5814,14 +5860,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Wyl9Wz35zvC9f/2NX2L8aw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-NGtsJ2J2O5XtqU3ios+cSQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:55 GMT + - Tue, 14 Mar 2023 05:22:31 GMT expires: - '-1' pragma: @@ -5829,7 +5875,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681556.473.441.469479|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771352.803.440.970471|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -5858,13 +5904,13 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/tQZAMYrMk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/tQZAMYrMk response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-insights-key-vaults\",\"url\":\"/d/tQZAMYrMk/azure-insights-key-vaults\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:24Z\",\"updated\":\"2023-03-13T04:18:24Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"azure-insights-key-vaults\",\"url\":\"/d/tQZAMYrMk/azure-insights-key-vaults\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-14T05:14:50Z\",\"updated\":\"2023-03-14T05:14:50Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":1,\"folderUid\":\"az-mon\",\"folderTitle\":\"Azure Monitor\",\"folderUrl\":\"/dashboards/f/az-mon/azure-monitor\",\"provisioned\":true,\"provisionedExternalId\":\"keyvault.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"__inputs\":[],\"__requires\":[{\"id\":\"grafana\",\"name\":\"Grafana\",\"type\":\"grafana\",\"version\":\"7.4.3\"},{\"id\":\"grafana-azure-monitor-datasource\",\"name\":\"Azure Monitor\",\"type\":\"datasource\",\"version\":\"0.3.0\"},{\"id\":\"graph\",\"name\":\"Graph\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"stat\",\"name\":\"Stat\",\"type\":\"panel\",\"version\":\"\"},{\"id\":\"table\",\"name\":\"Table\",\"type\":\"panel\",\"version\":\"\"}],\"description\":\"The - dashboard provides insights of Azure Key Vaults overview, failures and operations.\",\"editable\":true,\"id\":12,\"links\":[],\"panels\":[{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":0},\"id\":25,\"panels\":[],\"title\":\"Overview\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"percentage\",\"steps\":[{\"color\":\"green\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":7,\"w\":19,\"x\":0,\"y\":1},\"id\":9,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"none\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity + dashboard provides insights of Azure Key Vaults overview, failures and operations.\",\"editable\":true,\"id\":11,\"links\":[],\"panels\":[{\"collapsed\":false,\"datasource\":\"${ds}\",\"gridPos\":{\"h\":1,\"w\":24,\"x\":0,\"y\":0},\"id\":25,\"panels\":[],\"title\":\"Overview\",\"type\":\"row\"},{\"datasource\":\"${ds}\",\"fieldConfig\":{\"defaults\":{\"color\":{\"mode\":\"thresholds\"},\"custom\":{},\"mappings\":[],\"thresholds\":{\"mode\":\"percentage\",\"steps\":[{\"color\":\"green\",\"value\":null}]}},\"overrides\":[]},\"gridPos\":{\"h\":7,\"w\":19,\"x\":0,\"y\":1},\"id\":9,\"options\":{\"colorMode\":\"value\",\"graphMode\":\"none\",\"justifyMode\":\"center\",\"orientation\":\"auto\",\"reduceOptions\":{\"calcs\":[\"lastNotNull\"],\"fields\":\"\",\"values\":false},\"text\":{},\"textMode\":\"auto\"},\"pluginVersion\":\"7.4.3\",\"targets\":[{\"azureMonitor\":{\"aggOptions\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"aggregation\":\"Average\",\"allowedTimeGrainsMs\":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],\"dimensionFilter\":\"*\",\"dimensionFilters\":[],\"dimensions\":[{\"text\":\"Activity Type\",\"value\":\"ActivityType\"},{\"text\":\"Activity Name\",\"value\":\"ActivityName\"},{\"text\":\"Status Code\",\"value\":\"StatusCode\"},{\"text\":\"Status Code Class\",\"value\":\"StatusCodeClass\"}],\"metricDefinition\":\"Microsoft.KeyVault/vaults\",\"metricName\":\"Availability\",\"metricNamespace\":\"Microsoft.KeyVault/vaults\",\"resourceGroup\":\"$rg\",\"resourceName\":\"$resource\",\"timeGrain\":\"auto\",\"timeGrains\":[{\"text\":\"auto\",\"value\":\"auto\"},{\"text\":\"1 minute\",\"value\":\"PT1M\"},{\"text\":\"5 minutes\",\"value\":\"PT5M\"},{\"text\":\"15 @@ -6071,14 +6117,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OzczjkFt/HzBTmheoseLRQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PaJI8nkeysaHbKjAHyBmVA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:55 GMT + - Tue, 14 Mar 2023 05:22:32 GMT expires: - '-1' pragma: @@ -6086,7 +6132,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681556.795.437.656983|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771353.094.443.914211|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -6115,15 +6161,15 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/3n2E8CrGk + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/3n2E8CrGk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:49Z","updated":"2023-03-14T05:14:49Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"storage.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"gauge","name":"Gauge","type":"panel","version":""},{"id":"grafana","name":"Grafana","type":"grafana","version":"9.0.1"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"1.0.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"A dashboard that provides a unified view of Azure Storage services performance, capacity, and availability - metrics.","editable":true,"id":3,"iteration":null,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"green","value":100}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":0,"y":0},"id":7,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"/^Availability$/","values":false},"showThresholdLabels":false,"showThresholdMarkers":false,"text":{}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo + metrics.","editable":true,"id":4,"iteration":null,"links":[],"liveNow":false,"panels":[{"datasource":{"type":"grafana-azure-monitor-datasource","uid":"${ds}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"percentage","steps":[{"color":"red","value":null},{"color":"green","value":100}]}},"overrides":[]},"gridPos":{"h":4,"w":3,"x":0,"y":0},"id":7,"options":{"orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"/^Availability$/","values":false},"showThresholdLabels":false,"showThresholdMarkers":false,"text":{}},"pluginVersion":"9.0.1","targets":[{"azureMonitor":{"aggOptions":["Average","Minimum","Maximum"],"aggregation":"Average","alias":"Availability","allowedTimeGrainsMs":[60000,300000,900000,1800000,3600000,21600000,43200000,86400000],"dimensionFilter":"*","dimensionFilters":[],"dimensions":[{"text":"Geo type","value":"GeoType"},{"text":"API name","value":"ApiName"},{"text":"Authentication","value":"Authentication"}],"metricName":"Availability","metricNamespace":"microsoft.storage/storageaccounts","resourceGroup":"$rg","resourceName":"$resource","resourceUri":"/subscriptions/$sub/resourceGroups/$rg/providers/$ns/$resource","timeGrain":"auto","timeGrains":[{"text":"auto","value":"auto"},{"text":"1 minute","value":"PT1M"},{"text":"5 minutes","value":"PT5M"},{"text":"15 minutes","value":"PT15M"},{"text":"30 minutes","value":"PT30M"},{"text":"1 hour","value":"PT1H"},{"text":"6 hours","value":"PT6H"},{"text":"12 @@ -6441,14 +6487,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-EviVA6T4PfATGKryufywRQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-P3JE3Gsm7PUme3/Y1UM7TA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:56 GMT + - Tue, 14 Mar 2023 05:22:32 GMT expires: - '-1' pragma: @@ -6456,7 +6502,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681557.057.439.269174|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771353.315.435.150550|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -6485,15 +6531,15 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByRG + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByRG response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:49Z","updated":"2023-03-14T05:14:49Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsRG.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"This dashboard shows the performance and health of Azure Virtual Machines via different metrics - collected by Azure Monitor VM Insights. Filter data by Resource Group","editable":true,"id":5,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv + collected by Azure Monitor VM Insights. Filter data by Resource Group","editable":true,"id":6,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003eWelcome to the Azure Monitor data source for Grafana. To learn more about it, visit our \u003ca href=\"https://grafana.com/docs/grafana/latest/datasources/azuremonitor/\" @@ -7604,14 +7650,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lBDIRBlrbpcsU/HN1Ol0lg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-C8kVUwBmnYmpp1ll3er+Aw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:56 GMT + - Tue, 14 Mar 2023 05:22:32 GMT expires: - '-1' pragma: @@ -7619,8 +7665,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681557.339.441.835715|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771353.58.440.43656|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -7648,15 +7694,15 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByWS + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/AzVmInsightsByWS response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"vMInsightsWs.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.3"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"description":"This dashboard shows the performance and health of Azure Virtual Machines via different metrics - collected by Azure Monitor VM Insights. Filter data by Workspace","editable":true,"id":9,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv + collected by Azure Monitor VM Insights. Filter data by Workspace","editable":true,"id":7,"links":[],"liveNow":false,"panels":[{"gridPos":{"h":5,"w":24,"x":0,"y":0},"id":54,"options":{"content":"\u003cdiv style=\"padding: 1em; text-align: center\"\u003e\n \u003cp\u003eWelcome to the Azure Monitor data source for Grafana. To learn more about it, visit our \u003ca href=\"https://grafana.com/docs/grafana/latest/datasources/azuremonitor/\" @@ -8705,14 +8751,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gSqWdnAqPYiA9RR1PadHew';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-INm6OUORXt8iP1JvLUMRmQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:56 GMT + - Tue, 14 Mar 2023 05:22:32 GMT expires: - '-1' pragma: @@ -8720,8 +8766,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681557.639.435.116887|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771353.89.440.870061|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -8749,10 +8795,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/Mtwt2BV7k + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/Mtwt2BV7k response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:49Z","updated":"2023-03-14T05:14:49Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","provisioned":true,"provisionedExternalId":"arg.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__inputs":[],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.2.0-pre"},{"id":"grafana-azure-monitor-datasource","name":"Azure Monitor","type":"datasource","version":"0.3.0"},{"id":"stat","name":"Stat","type":"panel","version":""},{"id":"table","name":"Table","type":"panel","version":""}],"description":"The dashboard provides insights of Azure Resource Graph Explorer overview, compute, @@ -8760,7 +8806,7 @@ interactions: dashboard we sourced from the [Azure Inventory Workbook](https://github.com/scautomation/Azure-Inventory-Workbook) by Billy York. You can find more sample Azure Resource Graph queries by Billy at this [GitHub](https://github.com/scautomation/AzureResourceGraph-Examples) - repository.","editable":true,"gnetId":14986,"id":6,"links":[{"asDropdown":false,"icon":"external + repository.","editable":true,"gnetId":14986,"id":3,"links":[{"asDropdown":false,"icon":"external link","includeVars":false,"keepTime":false,"tags":[],"targetBlank":true,"title":"Azure Resource Graph queries by Billy York","tooltip":"See more","type":"link","url":"https://github.com/scautomation/AzureResourceGraph-Examples"}],"liveNow":false,"panels":[{"collapsed":false,"datasource":null,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":4,"panels":[],"title":"Overview","type":"row"},{"datasource":"${ds}","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":6,"w":7,"x":0,"y":1},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":true},"text":{},"textMode":"auto"},"targets":[{"account":"","azureResourceGraph":{"query":"Resources | summarize count(type)","resultFormat":"table"},"backends":[],"dimension":"","environment":"prod","metric":"","namespace":"","queryType":"Azure @@ -9393,14 +9439,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/h7zeEU0NLosWjxgC+QZ1Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-qKOB0GcIHtcjsdB/1Lah1Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:56 GMT + - Tue, 14 Mar 2023 05:22:33 GMT expires: - '-1' pragma: @@ -9408,7 +9454,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681557.936.442.525386|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771354.186.438.912707|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9437,12 +9483,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/xLERdASnz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/xLERdASnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"cluster-detail","url":"/d/xLERdASnz/cluster-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"ClusterDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"cluster-detail","url":"/d/xLERdASnz/cluster-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"ClusterDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":14,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":21,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster, this widget shows it''s health timeline - time at which each health state value was reported. For a group of clusters, it shows the percentage of each health state reported @@ -9513,14 +9559,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GUu5YbP4I/wDS17QpxqiUA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-28XUljiA0tNkxA2U5o3J0g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:57 GMT + - Tue, 14 Mar 2023 05:22:33 GMT expires: - '-1' pragma: @@ -9528,7 +9574,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681558.208.442.800395|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771354.472.440.476730|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9557,12 +9603,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/QTVw7iK7z + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/QTVw7iK7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"geneva-health","url":"/d/QTVw7iK7z/geneva-health","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"Health.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"geneva-health","url":"/d/QTVw7iK7z/geneva-health","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"Health.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"datasource":"Geneva Datasource","enable":true,"iconColor":"light-blue","name":"Geneva Health Annotations","target":{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Watchdog - Health","isAnnotationsMode":true,"limit":100,"matchAny":false,"metric":"","metricsQueryType":"ui","namespace":"","samplingType":"","selectedWatchdogResourceVar":"$nodeIds","service":"health","tags":[],"type":"dashboard","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":19,"links":[],"panels":[{"datasource":"Geneva + Health","isAnnotationsMode":true,"limit":100,"matchAny":false,"metric":"","metricsQueryType":"ui","namespace":"","samplingType":"","selectedWatchdogResourceVar":"$nodeIds","service":"health","tags":[],"type":"dashboard","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":15,"links":[],"panels":[{"datasource":"Geneva Datasource","gridPos":{"h":21,"w":6,"x":0,"y":0},"id":2,"options":{"monitorNameVar":"$monitorName","monitorVar":"$monitor","orientation":"vertical","resourceHealthVar":"$nodeIds","resourceNameVar":"$selectedRes"},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","service":"health","topologyNodeId":"$res","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Topology","type":"geneva-health-panel"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"fillOpacity":70,"lineWidth":0},"mappings":[{"options":{"0":{"color":"red","index":0,"text":"Unhealthy"},"1":{"color":"green","index":1,"text":"Healthy"},"2":{"color":"orange","index":2,"text":"Degraded"}},"type":"value"}],"thresholds":{"mode":"absolute","steps":[{"color":"text","value":null},{"color":"red","value":0},{"color":"green","value":1},{"color":"#EAB839","value":2}]}},"overrides":[]},"gridPos":{"h":7,"w":18,"x":6,"y":0},"id":4,"options":{"alignValue":"left","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"targets":[{"account":"$acc","backends":[],"dimension":"","groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Resource Health","metric":"","metricsQueryType":"ui","namespace":"","refId":"A","samplingType":"","selectedResourcesVar":"$nodeIds","service":"health","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":true}],"title":"Resource @@ -9582,14 +9628,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yBR8Qiu+arpQJuYByJ8uRA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9to4DUFNRZy8BhR6d/nJcA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:57 GMT + - Tue, 14 Mar 2023 05:22:33 GMT expires: - '-1' pragma: @@ -9597,7 +9643,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681558.437.436.198965|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771354.702.442.565697|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9626,16 +9672,16 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/icm-example + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/icm-example response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:25Z","updated":"2023-03-13T04:18:25Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"icm.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[{"description":"","label":"IcM + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"icm.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"__elements":[],"__inputs":[{"description":"","label":"IcM via ADX","name":"DS_ICM_VIA ADX","pluginId":"grafana-azure-data-explorer-datasource","pluginName":"Azure Data Explorer Datasource","type":"datasource"}],"__requires":[{"id":"grafana","name":"Grafana","type":"grafana","version":"8.4.1"},{"id":"grafana-azure-data-explorer-datasource","name":"Azure Data Explorer Datasource","type":"datasource","version":"3.6.1"},{"id":"table","name":"Table","type":"panel","version":""},{"id":"text","name":"Text","type":"panel","version":""},{"id":"timeseries","name":"Time series","type":"panel","version":""}],"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":24,"iteration":1648251431667,"links":[],"liveNow":false,"panels":[{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":22,"panels":[],"title":"About + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"id":13,"iteration":1648251431667,"links":[],"liveNow":false,"panels":[{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":22,"panels":[],"title":"About this dashboard","type":"row"},{"gridPos":{"h":7,"w":5,"x":0,"y":1},"id":24,"options":{"content":"This dashboard is based on the [IcM canned dashboard](https://lens.msftcloudes.com/#/dashboard/V2%20Dashboard?_g=(ws:ws-icm-business-dashboard-workspace)).\n\nQuestions? Comments? Please reach out to [us](mailto://mitulkdirs@microsoft.com?subject=IcM%20Canned%20Dashboard%20Feedback).","mode":"markdown"},"pluginVersion":"8.4.1","title":"About @@ -9782,14 +9828,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sZbAeP3v/2a09GpdeK1Hzg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FFWxvvkjWZRn3BNLDhVKAg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:57 GMT + - Tue, 14 Mar 2023 05:22:33 GMT expires: - '-1' pragma: @@ -9797,7 +9843,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681558.628.440.299817|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771354.892.437.219898|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9826,10 +9872,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/sVKyjvpnz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/sVKyjvpnz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"IncomingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":15,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"IncomingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":22,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\IncomingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\IncomingApiReliability\").samplingTypes(\"Rate\")\n\n| @@ -9889,14 +9935,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-87jnJCQSl7gMhkGSivBfkw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aL44nWB7ylNU5V62wx3nFg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:57 GMT + - Tue, 14 Mar 2023 05:22:34 GMT expires: - '-1' pragma: @@ -9904,7 +9950,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681558.835.441.818954|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771355.126.442.913167|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -9933,12 +9979,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/_sKhXTH7z + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/_sKhXTH7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"node-detail","url":"/d/_sKhXTH7z/node-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"NodeDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"node-detail","url":"/d/_sKhXTH7z/node-detail","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"NodeDetail.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":20,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + \u0026 Alerts","target":{"limit":100,"matchAny":false,"tags":[],"type":"dashboard"},"type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":16,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","description":"For a particular cluster and an application, this widget shows it''s health timeline - time when the application sent Ok, Warning and Error as it''s health status","fieldConfig":{"defaults":{"color":{"mode":"continuous-RdYlGr"},"custom":{"fillOpacity":75,"lineWidth":0},"mappings":[],"max":1,"min":0,"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]},"unit":"short"},"overrides":[{"matcher":{"id":"byRegexp","options":"Error.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"red","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Ok.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"green","index":1}},"type":"value"}]}]},{"matcher":{"id":"byRegexp","options":"Warning.*"},"properties":[{"id":"mappings","value":[{"options":{"0":{"color":"transparent","index":0},"1":{"color":"yellow","index":1}},"type":"value"}]}]}]},"gridPos":{"h":13,"w":24,"x":0,"y":0},"id":2,"options":{"alignValue":"center","legend":{"displayMode":"hidden","placement":"bottom"},"mergeValues":true,"rowHeight":0.9,"showValue":"never","tooltip":{"mode":"single"}},"targets":[{"account":"$account","azureMonitor":{"timeGrain":"auto"},"backends":[],"dimension":"ClusterName, @@ -9974,14 +10020,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-whQTgZ2oi42PwGHLsbiP8w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-peP3gAmQTWWanyyMRThjWg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:58 GMT + - Tue, 14 Mar 2023 05:22:34 GMT expires: - '-1' pragma: @@ -9989,7 +10035,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681559.05.436.469384|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771355.374.442.70778|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10018,10 +10064,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/6naEwcp7z + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/6naEwcp7z response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:24Z","updated":"2023-03-13T04:18:24Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"OutgoingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":16,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"OutgoingQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"editable":true,"fiscalYearStartMonth":0,"gnetId":null,"graphTooltip":0,"id":17,"links":[],"liveNow":false,"panels":[{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":0,"y":0},"id":2,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"NullableAverage\")\n\n| top 40 by avg(NullableAverage) desc\n","refId":"A","samplingType":"NullableAverage","service":"metrics","useBackends":false,"useCustomSeriesNaming":false,"useResourceVars":false}],"title":"Overall Reliability","type":"stat"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"decimals":2,"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":9,"w":12,"x":12,"y":0},"id":3,"options":{"colorMode":"value","graphMode":"area","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"text":{},"textMode":"auto"},"pluginVersion":"8.2.2","targets":[{"account":"AnswersUIProd","backends":[],"dimension":"Total","dimensionFilterOperators":[],"dimensionFilterValues":[],"dimensionFilters":[],"groupByUnit":"m","groupByValue":"1","healthHistoryValueTransform":"raw","healthQueryType":"Topology","metric":"StandingQuery\\OutgoingApiReliability","metricsQueryType":"ui","namespace":"ApplicationMetrics","queryText":"metric(\"StandingQuery\\\\OutgoingApiReliability\").samplingTypes(\"RequestRate\")\n\n| @@ -10088,14 +10134,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OqzJmEyk7/o7WeCrf/djew';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AFSsEqcqJwM7wDn/BKaypQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:58 GMT + - Tue, 14 Mar 2023 05:22:34 GMT expires: - '-1' pragma: @@ -10103,7 +10149,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681559.241.440.696883|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771355.562.437.529943|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10132,12 +10178,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/GIgvhSV7z + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/GIgvhSV7z response: body: - string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"service-fabric-application-overview\",\"url\":\"/d/GIgvhSV7z/service-fabric-application-overview\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-13T04:18:25Z\",\"updated\":\"2023-03-13T04:18:25Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":13,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"ServiceFabricApplicationOverview.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- + string: "{\"meta\":{\"type\":\"db\",\"canSave\":true,\"canEdit\":true,\"canAdmin\":true,\"canStar\":true,\"canDelete\":true,\"slug\":\"service-fabric-application-overview\",\"url\":\"/d/GIgvhSV7z/service-fabric-application-overview\",\"expires\":\"0001-01-01T00:00:00Z\",\"created\":\"2023-03-14T05:14:50Z\",\"updated\":\"2023-03-14T05:14:50Z\",\"updatedBy\":\"Anonymous\",\"createdBy\":\"Anonymous\",\"version\":1,\"hasAcl\":false,\"isFolder\":false,\"folderId\":12,\"folderUid\":\"geneva\",\"folderTitle\":\"Geneva\",\"folderUrl\":\"/dashboards/f/geneva/geneva\",\"provisioned\":true,\"provisionedExternalId\":\"ServiceFabricApplicationOverview.json\",\"annotationsPermissions\":{\"dashboard\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false},\"organization\":{\"canAdd\":false,\"canEdit\":false,\"canDelete\":false}},\"hasPublicDashboard\":false,\"publicDashboardAccessToken\":\"\",\"publicDashboardUid\":\"\",\"publicDashboardEnabled\":false},\"dashboard\":{\"annotations\":{\"list\":[{\"builtIn\":1,\"datasource\":\"-- Grafana --\",\"enable\":true,\"hide\":true,\"iconColor\":\"rgba(0, 211, 255, - 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"target\":{\"limit\":100,\"matchAny\":false,\"tags\":[],\"type\":\"dashboard\"},\"type\":\"dashboard\"}]},\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":21,\"links\":[{\"asDropdown\":true,\"icon\":\"external + 1)\",\"name\":\"Annotations \\u0026 Alerts\",\"target\":{\"limit\":100,\"matchAny\":false,\"tags\":[],\"type\":\"dashboard\"},\"type\":\"dashboard\"}]},\"editable\":true,\"gnetId\":null,\"graphTooltip\":0,\"id\":23,\"links\":[{\"asDropdown\":true,\"icon\":\"external link\",\"includeVars\":true,\"keepTime\":true,\"tags\":[],\"targetBlank\":true,\"title\":\"New link\",\"tooltip\":\"\",\"type\":\"dashboards\",\"url\":\"\"}],\"panels\":[{\"datasource\":\"Geneva Datasource\",\"description\":\"Total number of clusters reporting at least @@ -10212,14 +10258,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-czzcnA2kaynKMIapATwIsw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-JXEPT6OxWMi1zSb8GPFwsg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:58 GMT + - Tue, 14 Mar 2023 05:22:34 GMT expires: - '-1' pragma: @@ -10227,7 +10273,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681559.466.441.281285|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771355.796.439.988230|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10256,12 +10302,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/35uFkx-Vk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:49Z","updated":"2023-03-13T04:25:49Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":27,"folderUid":"3OpsFo-Vk","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/3OpsFo-Vk/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":28,"title":"Test - Dashboard","uid":"y92yFT-Vz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/35uFkx-Vk/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:22:25Z","updated":"2023-03-14T05:22:25Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":26,"folderUid":"SLQFzba4z","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/SLQFzba4z/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":27,"title":"Test + Dashboard","uid":"35uFkx-Vk","version":1}}' headers: cache-control: - no-cache @@ -10270,14 +10316,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-wRbjNA7m+xk2pK5ziawx4w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-R0VTTx2ySF3ZGOgGi/Tpvg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:58 GMT + - Tue, 14 Mar 2023 05:22:35 GMT expires: - '-1' pragma: @@ -10285,7 +10331,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681559.678.438.207896|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771356.027.441.979867|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10314,10 +10360,10 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/dashboards/uid/35uFkx-Vk response: body: - string: '{"message":"Dashboard not found","traceID":"c4f9efab8c0320662097d93fe03b700e"}' + string: '{"message":"Dashboard not found","traceID":"0c678d65c4bc3788d3e45b93c9051dd2"}' headers: cache-control: - no-cache @@ -10326,14 +10372,14 @@ interactions: content-length: - '78' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vnzvPBsh2p2xtE6+chvJBg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-msQ1+6LkY0SRNpUsox1DGg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:59 GMT + - Tue, 14 Mar 2023 05:22:35 GMT expires: - '-1' pragma: @@ -10341,7 +10387,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681559.873.439.202683|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771356.233.435.846380|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10370,10 +10416,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/folders response: body: - string: '{"id":25,"uid":"HICsFo-4k","title":"Test Folder","url":"/dashboards/f/HICsFo-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T04:25:59.273924832Z","updatedBy":"example@example.com","updated":"2023-03-13T04:25:59.273924932Z","version":1,"parentUid":""}' + string: '{"id":28,"uid":"fQHckxa4k","title":"Test Folder","url":"/dashboards/f/fQHckxa4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:22:35.446203182Z","updatedBy":"example@example.com","updated":"2023-03-14T05:22:35.446203282Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -10382,14 +10428,14 @@ interactions: content-length: - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-aXxOfsPXkjdnsBa8qqEpzw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GRRMaBlW10q1AAulwPftiQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:59 GMT + - Tue, 14 Mar 2023 05:22:35 GMT expires: - '-1' pragma: @@ -10397,7 +10443,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681560.248.443.232099|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771356.423.439.537339|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10412,17 +10458,17 @@ interactions: message: OK - request: body: '{"meta": {"type": "db", "canSave": true, "canEdit": true, "canAdmin": true, - "canStar": true, "canDelete": true, "slug": "test-dashboard", "url": "/d/y92yFT-Vz/test-dashboard", - "expires": "0001-01-01T00:00:00Z", "created": "2023-03-13T04:25:49Z", "updated": - "2023-03-13T04:25:49Z", "updatedBy": "example@example.com", "createdBy": "example@example.com", - "version": 1, "hasAcl": false, "isFolder": false, "folderId": 27, "folderUid": - "3OpsFo-Vk", "folderTitle": "Test Folder", "folderUrl": "/dashboards/f/3OpsFo-Vk/test-folder", + "canStar": true, "canDelete": true, "slug": "test-dashboard", "url": "/d/35uFkx-Vk/test-dashboard", + "expires": "0001-01-01T00:00:00Z", "created": "2023-03-14T05:22:25Z", "updated": + "2023-03-14T05:22:25Z", "updatedBy": "example@example.com", "createdBy": "example@example.com", + "version": 1, "hasAcl": false, "isFolder": false, "folderId": 26, "folderUid": + "SLQFzba4z", "folderTitle": "Test Folder", "folderUrl": "/dashboards/f/SLQFzba4z/test-folder", "provisioned": false, "provisionedExternalId": "", "annotationsPermissions": {"dashboard": {"canAdd": false, "canEdit": false, "canDelete": false}, "organization": {"canAdd": false, "canEdit": false, "canDelete": false}}, "hasPublicDashboard": false, "publicDashboardAccessToken": "", "publicDashboardUid": "", "publicDashboardEnabled": - false}, "dashboard": {"title": "Test Dashboard", "uid": "y92yFT-Vz", "version": - 1}, "folderId": 25, "overwrite": true}' + false}, "dashboard": {"title": "Test Dashboard", "uid": "35uFkx-Vk", "version": + 1}, "folderId": 28, "overwrite": true}' headers: Accept: - '*/*' @@ -10437,10 +10483,10 @@ interactions: content-type: - application/json method: POST - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/db + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":26,"slug":"test-dashboard","status":"success","uid":"y92yFT-Vz","url":"/d/y92yFT-Vz/test-dashboard","version":1}' + string: '{"id":29,"slug":"test-dashboard","status":"success","uid":"35uFkx-Vk","url":"/d/35uFkx-Vk/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -10449,14 +10495,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5q2QC71N6ZZwX4pk4h2TXw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VaZ2mH573Nqxzyj2o/IKow';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:59 GMT + - Tue, 14 Mar 2023 05:22:35 GMT expires: - '-1' pragma: @@ -10464,7 +10510,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681560.453.435.703429|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771356.633.443.625704|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10491,12 +10537,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg-cchsamfze0fahxeu.wcus.grafana.azure.com/api/dashboards/uid/duj3tR77k + uri: https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com/api/dashboards/uid/duj3tR77k response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"warmpathqos","url":"/d/duj3tR77k/warmpathqos","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:18:25Z","updated":"2023-03-13T04:18:25Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"WarmPathQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"warmpathqos","url":"/d/duj3tR77k/warmpathqos","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:14:50Z","updated":"2023-03-14T05:14:50Z","updatedBy":"Anonymous","createdBy":"Anonymous","version":1,"hasAcl":false,"isFolder":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","provisioned":true,"provisionedExternalId":"WarmPathQoS.json","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"annotations":{"list":[{"builtIn":1,"datasource":"-- Grafana --","enable":true,"hide":true,"iconColor":"rgba(0, 211, 255, 1)","name":"Annotations - \u0026 Alerts","type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":22,"links":[],"panels":[{"datasource":null,"gridPos":{"h":3,"w":24,"x":0,"y":0},"id":2,"options":{"content":"To + \u0026 Alerts","type":"dashboard"}]},"editable":true,"gnetId":null,"graphTooltip":0,"id":18,"links":[],"panels":[{"datasource":null,"gridPos":{"h":3,"w":24,"x":0,"y":0},"id":2,"options":{"content":"To know more check \u003cbr\u003e\n\u003ca href=\"https://eng.ms/docs/products/geneva/logs/howtoguides/qos/overview\"\u003eWarmPath QoS Metrics Overview\u003c/a\u003e","mode":"html"},"pluginVersion":"8.0.6","title":"Geneva WarmPath Quick Links","type":"text"},{"datasource":"Geneva Datasource","fieldConfig":{"defaults":{"color":{"fixedColor":"green","mode":"thresholds"},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null}]}},"overrides":[]},"gridPos":{"h":5,"w":12,"x":0,"y":3},"id":4,"options":{"colorMode":"value","graphMode":"none","justifyMode":"auto","orientation":"auto","reduceOptions":{"calcs":["lastNotNull"],"fields":"","values":false},"text":{},"textMode":"value_and_name"},"pluginVersion":"8.0.6","targets":[{"account":"$account","backends":[],"customSeriesNaming":"Total/1000","dimension":"","metric":"","metricsQueryType":"query","namespace":"WarmPathQoS","queryText":"metric(\"PipelineIngestion\").samplingTypes(\"LatencyMs\").preaggregate(\"Total\")\n| @@ -10549,14 +10595,14 @@ interactions: connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-7kxLzOM/bnNu1FjmF3rxrQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2sbhVc4STGVyyr2U4Dpnng';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:25:59 GMT + - Tue, 14 Mar 2023 05:22:35 GMT expires: - '-1' pragma: @@ -10564,8 +10610,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681560.665.441.414872|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771356.87.438.333579|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -10593,10 +10639,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders/id/Test%20Folder + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"02c6b34b3fb9f84c4597527518721a03"}' + string: '{"message":"id is invalid","traceID":"fb4a5183eebebc96f0f6b0c1f38ac0bd"}' headers: cache-control: - no-cache @@ -10605,14 +10651,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lVUr9EwkQzJnzKKOwfxpsA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+RfXNYp1+PvKM3ar5DpQ5A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:26:00 GMT + - Tue, 14 Mar 2023 05:22:36 GMT expires: - '-1' pragma: @@ -10620,7 +10666,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681560.981.437.316807|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771357.183.439.934332|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10647,7 +10693,7 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders/Test%20Folder + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/folders/Test%20Folder response: body: string: '{"message":"folder not found","status":"not-found"}' @@ -10659,14 +10705,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-K7c9/FxvQdCT88A9uReMGA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dTWLlLv2Dl5ICVcK+EUnYA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:26:00 GMT + - Tue, 14 Mar 2023 05:22:36 GMT expires: - '-1' pragma: @@ -10674,7 +10720,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681561.457.440.277793|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771357.388.441.549134|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10701,10 +10747,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/folders + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":25,"uid":"HICsFo-4k","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":15,"uid":"geneva","title":"Geneva"},{"id":28,"uid":"fQHckxa4k","title":"Test Folder"}]' headers: cache-control: @@ -10714,14 +10760,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-BarT22IsOkyFJJunWEPU3A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ugew6CFwEk7kWT5yE2/liw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:26:00 GMT + - Tue, 14 Mar 2023 05:22:36 GMT expires: - '-1' pragma: @@ -10729,7 +10775,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681561.628.443.489418|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771357.587.436.965458|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -10756,12 +10802,12 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com/api/dashboards/uid/y92yFT-Vz + uri: https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com/api/dashboards/uid/35uFkx-Vk response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/y92yFT-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T04:25:59Z","updated":"2023-03-13T04:25:59Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":25,"folderUid":"HICsFo-4k","folderTitle":"Test - Folder","folderUrl":"/dashboards/f/HICsFo-4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":26,"title":"Test - Dashboard","uid":"y92yFT-Vz","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/35uFkx-Vk/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:22:35Z","updated":"2023-03-14T05:22:35Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":28,"folderUid":"fQHckxa4k","folderTitle":"Test + Folder","folderUrl":"/dashboards/f/fQHckxa4k/test-folder","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":29,"title":"Test + Dashboard","uid":"35uFkx-Vk","version":1}}' headers: cache-control: - no-cache @@ -10770,14 +10816,14 @@ interactions: content-length: - '881' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iHKwE5GV4p2tq0tN9vR86g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-b3RlrRMyLS4dMpGBCc+/Zw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 04:26:00 GMT + - Tue, 14 Mar 2023 05:22:37 GMT expires: - '-1' pragma: @@ -10785,7 +10831,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678681561.906.437.736985|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771357.862.439.863965|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml index 9e3ad081a9f..103d3decd35 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_crud.yaml @@ -23,26 +23,26 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.887186Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview cache-control: - no-cache content-length: - - '1157' + - '1155' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:10:17 GMT + - Tue, 14 Mar 2023 05:11:00 GMT etag: - - '"d900898e-0000-0600-0000-640e69e90000"' + - '"830146d8-0000-0600-0000-641001e40000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -74,10 +74,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:10:47 GMT + - Tue, 14 Mar 2023 05:11:30 GMT etag: - - '"5f00866f-0000-0600-0000-640e69e80000"' + - '"0000e4d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -120,10 +120,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:11:17 GMT + - Tue, 14 Mar 2023 05:12:00 GMT etag: - - '"5f00866f-0000-0600-0000-640e69e80000"' + - '"0000e4d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -166,10 +166,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:11:47 GMT + - Tue, 14 Mar 2023 05:12:30 GMT etag: - - '"5f00866f-0000-0600-0000-640e69e80000"' + - '"0000e4d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -212,10 +212,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:12:17 GMT + - Tue, 14 Mar 2023 05:13:00 GMT etag: - - '"5f00866f-0000-0600-0000-640e69e80000"' + - '"0000e4d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -258,10 +258,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:12:47 GMT + - Tue, 14 Mar 2023 05:13:31 GMT etag: - - '"5f00866f-0000-0600-0000-640e69e80000"' + - '"0000e4d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -304,10 +304,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:13:18 GMT + - Tue, 14 Mar 2023 05:14:01 GMT etag: - - '"5f00866f-0000-0600-0000-640e69e80000"' + - '"0000e4d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -350,10 +350,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-13T00:10:16.9153769Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:13:47 GMT + - Tue, 14 Mar 2023 05:14:31 GMT etag: - - '"5f00866f-0000-0600-0000-640e69e80000"' + - '"0000e4d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -396,10 +396,56 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"5335c00a-f787-458b-9d34-3080f2a666e8*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-13T00:10:16.9153769Z","endTime":"2023-03-13T00:14:08.9320532Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Accepted","startTime":"2023-03-14T05:10:59.8147673Z"}' + headers: + cache-control: + - no-cache + content-length: + - '508' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Mar 2023 05:15:00 GMT + etag: + - '"0000e4d6-0000-0600-0000-641001e30000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - grafana create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --tags --skip-role-assignments + User-Agent: + - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"ac923271-da2b-41dc-a0cc-11fb8ee74c10*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-14T05:10:59.8147673Z","endTime":"2023-03-14T05:15:17.7671161Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -408,9 +454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:17 GMT + - Tue, 14 Mar 2023 05:15:30 GMT etag: - - '"5f00a46f-0000-0600-0000-640e6ad00000"' + - '"00009ad8-0000-0600-0000-641002e50000"' expires: - '-1' pragma: @@ -445,18 +491,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.887186Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1076' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:18 GMT + - Tue, 14 Mar 2023 05:15:31 GMT etag: - - '"d900bc8e-0000-0600-0000-640e6ad00000"' + - '"8301e8db-0000-0600-0000-641002e50000"' expires: - '-1' pragma: @@ -493,16 +539,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.887186Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '1088' + - '1086' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:20 GMT + - Tue, 14 Mar 2023 05:15:33 GMT expires: - '-1' pragma: @@ -514,19 +560,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 080e157c-c9e4-4908-b81f-89bf74405278 - - f00a6452-3749-4b57-ae85-739f21f2528a - - 60e79f8f-a330-4593-83d0-6147b0eac680 - - 3fe79993-5046-43e3-bbff-9585233691c2 - - bca0d67d-85e4-45d9-bcc3-1aff16508702 - - 652215c7-cf12-4064-87e0-2f24264c8942 - - bfae2260-6576-4f81-8beb-31f66ddf0ec2 - - a911d15c-671e-4187-bc8c-36a860376aaf - - e13c6704-55b7-4220-b145-a1a02c8349f0 - - a776fc87-29eb-439e-a5a6-ffbb83b31cd1 - - bbe906a1-01e8-4106-ba30-5d5ab95129ae - - bfda8262-dbe8-4fa2-bfb6-be9d7045ee23 - - eb9f4bff-16a0-4c8c-a481-c29fceee61d5 + - e66f2c97-afa7-48a5-965d-c9a82a8645fe + - 2e38fa05-5c1a-4f4f-96a2-6ebe8e5ed79a + - 97237699-2e97-46a1-99d3-7f277c47ae9c + - f6329a2e-2cca-47c5-b3a2-62f8e2000a05 + - 3c9d4af2-5256-4a3a-a104-0bca36135365 + - b3c5f594-a240-4bcc-96ef-ee7e5688c690 + - 9d406f54-0e3e-4667-9ad9-bc4a173a284b + - ca47666e-1ac2-48cf-a32f-8b682a1804eb + - 800c0880-4093-424f-b0bd-175533b9e7c2 + - d1a603cf-e732-4e9e-b842-632011e74f5e + - 3a510676-b7c7-41ec-b325-24a58e7040e6 + - fa089213-d1ae-493f-a845-11687b111860 + - 531e74e6-6665-4fc3-9a30-75e17520067c status: code: 200 message: OK @@ -547,16 +593,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T22:55:22.3312261Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":null,"endpoint":null,"zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.887186Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg4d4aquxgcqhoazuxlpfxndej2tfxawsjadndnwhporqkzhhzrv3h2swx55pizki/providers/Microsoft.Dashboard/grafana/clitestbackup","name":"clitestbackup","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.68013Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.68013Z"},"identity":{"principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amglkj3k7cdgdabtveydskutvx5r4xyj3jaqqxq2gkobc6eut5mei3nipa7edbra6k/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.8959147Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amglpni6kvdfp7szppa5tdasxnyd7p5ni55taf3tirh2txbz42twpnmg4df4a6ftna/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '3440' + - '6879' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:22 GMT + - Tue, 14 Mar 2023 05:15:34 GMT expires: - '-1' pragma: @@ -568,19 +614,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 2a93d678-0ebb-4a1e-9823-2c765dea000f - - e9ba6620-3aaa-4a6e-b34f-ecedbb2d771a - - c38a9bd8-3a4d-49b7-8ee0-abd1cb996ac1 - - e5e65d65-ee17-4a95-a7ca-19111d199e22 - - 6dbbb0b7-eb0c-44f0-af0c-4bcb860e00f2 - - 8d470c1a-5961-42f4-9a3a-85aa2d807915 - - 0c121268-dfcd-4ef6-969e-f7f58635ee2d - - 79fdfce6-32c4-49cd-9e3b-843befe360ca - - 019fd463-7d26-48ad-bcb4-95a0daa0d5c0 - - 43712df0-ff17-462c-bf29-08c812f8755f - - 27f32782-f961-4d38-91d0-31cf141cb923 - - 97a76026-260a-4ac5-9f72-10bfb0ca3517 - - 3049e5f7-70ab-4986-a749-9bf8602d2e7b + - 247a42ea-11ad-4b91-a862-6dfaa6ad0059 + - 0f2981c7-fdf9-436e-9ee6-428bf8d0d90d + - 3b178e7f-0eec-4392-931b-6b01c083d761 + - 31de5d0d-3180-45d1-894a-5417355f26b8 + - ff190d7c-d92c-4ef9-a8dd-50f474bae722 + - 1266c5df-5938-4ec7-b612-b83dea68001f + - aa868eac-30de-4167-8465-8de6a3abd027 + - 5e1246a2-243f-47ce-b315-1ce654981f98 + - 1ca23360-20d5-48de-baec-c7ea272316a6 + - 705faa55-aa72-4f62-805f-96d4eb9329de + - 64b15a0d-0bee-47de-9215-f738e2691940 + - 0871beaa-ebf9-4879-a879-8d73bdb2d442 + - c76ce191-949c-4f6a-8721-84845c87fc3d status: code: 200 message: OK @@ -603,18 +649,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.887186Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1076' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:22 GMT + - Tue, 14 Mar 2023 05:15:34 GMT etag: - - '"d900bc8e-0000-0600-0000-640e6ad00000"' + - '"8301e8db-0000-0600-0000-641002e50000"' expires: - '-1' pragma: @@ -651,18 +697,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:10:15.6463784Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.887186Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1076' + - '1074' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:23 GMT + - Tue, 14 Mar 2023 05:15:35 GMT etag: - - '"d900bc8e-0000-0600-0000-640e6ad00000"' + - '"8301e8db-0000-0600-0000-641002e50000"' expires: - '-1' pragma: @@ -708,20 +754,20 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:23.9225848Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.192.173","20.165.192.155"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:36.3683636Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.189.208","20.165.226.61"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview cache-control: - no-cache content-length: - - '1190' + - '1188' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:24 GMT + - Tue, 14 Mar 2023 05:15:36 GMT etag: - - '"d900bd8e-0000-0600-0000-640e6ae00000"' + - '"83012cdc-0000-0600-0000-641002f90000"' expires: - '-1' pragma: @@ -762,18 +808,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:23.9225848Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.192.173","20.165.192.155"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:36.3683636Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.189.208","20.165.226.61"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1190' + - '1188' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:25 GMT + - Tue, 14 Mar 2023 05:15:37 GMT etag: - - '"d900bd8e-0000-0600-0000-640e6ae00000"' + - '"83012cdc-0000-0600-0000-641002f90000"' expires: - '-1' pragma: @@ -810,18 +856,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:23.9225848Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.192.173","20.165.192.155"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:36.3683636Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["20.165.189.208","20.165.226.61"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache content-length: - - '1190' + - '1188' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:25 GMT + - Tue, 14 Mar 2023 05:15:38 GMT etag: - - '"d900bd8e-0000-0600-0000-640e6ae00000"' + - '"83012cdc-0000-0600-0000-641002f90000"' expires: - '-1' pragma: @@ -867,7 +913,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:26.337416Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.1111088Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview @@ -878,9 +924,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:27 GMT + - Tue, 14 Mar 2023 05:15:39 GMT etag: - - '"d900be8e-0000-0600-0000-640e6ae20000"' + - '"830131dc-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -921,7 +967,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:26.337416Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.1111088Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -930,9 +976,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:27 GMT + - Tue, 14 Mar 2023 05:15:41 GMT etag: - - '"d900be8e-0000-0600-0000-640e6ae20000"' + - '"830131dc-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -969,7 +1015,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-13T00:10:15.6463784Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T00:14:26.337416Z"},"identity":{"principalId":"1fab1801-cb9b-42c8-a220-9f1094708cee","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.1111088Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -978,9 +1024,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:28 GMT + - Tue, 14 Mar 2023 05:15:41 GMT etag: - - '"d900be8e-0000-0600-0000-640e6ae20000"' + - '"830131dc-0000-0600-0000-641002fc0000"' expires: - '-1' pragma: @@ -1024,7 +1070,7 @@ interactions: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -1032,13 +1078,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:14:28 GMT + - Tue, 14 Mar 2023 05:15:41 GMT etag: - - '"d900bf8e-0000-0600-0000-640e6ae40000"' + - '"830133dc-0000-0600-0000-641002fd0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -1070,178 +1116,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' - headers: - cache-control: - - no-cache - content-length: - - '519' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 00:14:58 GMT - etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --yes - User-Agent: - - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' - headers: - cache-control: - - no-cache - content-length: - - '519' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 00:15:28 GMT - etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --yes - User-Agent: - - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' - headers: - cache-control: - - no-cache - content-length: - - '519' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 00:15:58 GMT - etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --yes - User-Agent: - - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' - headers: - cache-control: - - no-cache - content-length: - - '519' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 00:16:28 GMT - etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --yes - User-Agent: - - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1250,9 +1128,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:16:59 GMT + - Tue, 14 Mar 2023 05:16:11 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1280,10 +1158,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1292,9 +1170,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:17:28 GMT + - Tue, 14 Mar 2023 05:16:41 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1322,10 +1200,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1334,9 +1212,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:17:58 GMT + - Tue, 14 Mar 2023 05:17:11 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1364,10 +1242,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1376,9 +1254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:18:29 GMT + - Tue, 14 Mar 2023 05:17:42 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1406,10 +1284,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1418,9 +1296,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:18:58 GMT + - Tue, 14 Mar 2023 05:18:12 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1448,10 +1326,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1460,9 +1338,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:19:28 GMT + - Tue, 14 Mar 2023 05:18:42 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1490,10 +1368,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1502,9 +1380,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:19:59 GMT + - Tue, 14 Mar 2023 05:19:12 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1532,10 +1410,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1544,9 +1422,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:20:29 GMT + - Tue, 14 Mar 2023 05:19:41 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1574,10 +1452,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1586,9 +1464,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:20:59 GMT + - Tue, 14 Mar 2023 05:20:12 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1616,10 +1494,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1628,9 +1506,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:21:29 GMT + - Tue, 14 Mar 2023 05:20:42 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1658,10 +1536,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-13T00:14:28.8166078Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Deleting","startTime":"2023-03-14T05:15:41.6801417Z","error":{}}' headers: cache-control: - no-cache @@ -1670,9 +1548,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:21:59 GMT + - Tue, 14 Mar 2023 05:21:12 GMT etag: - - '"5f00ab6f-0000-0600-0000-640e6aed0000"' + - '"0000f6d8-0000-0600-0000-641003060000"' expires: - '-1' pragma: @@ -1700,10 +1578,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","name":"35678d48-e0f3-4f83-bc7a-058634bc1d94*E4012C2B862EF7CB453B27B2A1BCB205EE17B3175D87C1089AFAC1096E458803","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-13T00:14:28.8166078Z","endTime":"2023-03-13T00:22:10.5594034Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","name":"501505b0-b6f3-47e5-940f-eb05b0b5eee6*99061F8C9E6FC7ADEFDF788935323AB725347454967F8B24F181D149B6219241","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamg2","status":"Succeeded","startTime":"2023-03-14T05:15:41.6801417Z","endTime":"2023-03-14T05:21:24.4876097Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -1712,9 +1590,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:22:29 GMT + - Tue, 14 Mar 2023 05:21:42 GMT etag: - - '"5f00d46f-0000-0600-0000-640e6cb20000"' + - '"0000fdda-0000-0600-0000-641004540000"' expires: - '-1' pragma: @@ -1747,7 +1625,7 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=principalId%20eq%20'1fab1801-cb9b-42c8-a220-9f1094708cee' + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%276113ec71-42aa-4dbd-87b4-9bbf61ba86e1%27&api-version=2020-04-01-preview response: body: string: '{"value":[]}' @@ -1759,7 +1637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:22:30 GMT + - Tue, 14 Mar 2023 05:21:43 GMT expires: - '-1' pragma: @@ -1794,16 +1672,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T22:55:22.3312261Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":null,"endpoint":null,"zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg4d4aquxgcqhoazuxlpfxndej2tfxawsjadndnwhporqkzhhzrv3h2swx55pizki/providers/Microsoft.Dashboard/grafana/clitestbackup","name":"clitestbackup","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.68013Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.68013Z"},"identity":{"principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amglkj3k7cdgdabtveydskutvx5r4xyj3jaqqxq2gkobc6eut5mei3nipa7edbra6k/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:17:39.4514616Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg4d4aquxgcqhoazuxlpfxndej2tfxawsjadndnwhporqkzhhzrv3h2swx55pizki/providers/Microsoft.Dashboard/grafana/clitestbackup2","name":"clitestbackup2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:15:39.8079842Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.8079842Z"},"identity":{"principalId":"b8ae7cb8-5381-4be0-92e1-678d7d276a21","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amglpni6kvdfp7szppa5tdasxnyd7p5ni55taf3tirh2txbz42twpnmg4df4a6ftna/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"yugangw@microsoft.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"yugangw@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '6937' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 00:22:31 GMT + - Tue, 14 Mar 2023 05:21:44 GMT expires: - '-1' pragma: @@ -1815,19 +1693,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 7116ac0e-2cba-4367-9e35-ae36b09f3e4a - - 2c5efa14-a7c6-4d19-86e7-3b59a1aa3825 - - 8cfe56cd-6bc9-440b-87df-b239c45ec76c - - 5f56c422-bcd5-4a01-a1f2-ec67ff158c95 - - 6fdb74c9-4f69-4b33-9623-f1a6e65d4bc4 - - dd4eb282-5b8d-4520-9e6d-9e441a976b46 - - 4edd8004-d614-46b2-a4d7-c0e6b5f9fb6e - - 7e5326b7-224b-4d95-8c89-62be59d305d3 - - 5986c691-3d13-4597-87df-941980152f9a - - fbd670b1-2d9a-4ea3-8cec-cb64983b0b4e - - cf4dec83-2425-44ad-9f38-a15408282d0d - - d255e0de-0e60-4ed0-8d59-2c656193064f - - 934a5d11-fdbf-40a0-b86f-f4e9c7099480 + - 8d2e825a-c2ef-427e-b17d-4d3c2969a842 + - f68f88b8-501c-4485-99e5-d3e2bb5f8f66 + - 432e9845-16eb-45c1-b804-4ff972624dbe + - 3ae404ab-0b58-4ba3-8392-c68831c83cdd + - 54026df2-5181-40af-bfb8-a685a48cc7f6 + - cd8f44e4-c261-4a09-bd13-45028f125a38 + - 1232be8c-a089-42cc-84d9-b0734534c315 + - 3127b2c9-1a31-48fa-bde4-71b45ecd1afd + - 0cf94aa1-1ff5-4a7b-bd4c-b981593b5e83 + - 3de11079-e116-47c5-94e0-0d3339d4232f + - 90162ee0-98e5-4441-8531-986db42d9742 + - 8c4a3763-ecff-4439-8377-c26011937796 + - aa3d8026-5e4e-4554-b62b-7e1d0e0a01e3 status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml index bb8673e388e..d3b2acf31d3 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_amg_e2e.yaml @@ -23,12 +23,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:02:07 GMT + - Tue, 14 Mar 2023 05:11:07 GMT etag: - - '"6500fe20-0000-0d00-0000-640eae4f0000"' + - '"6e008c4a-0000-0d00-0000-641001ea0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -74,21 +74,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:02:38 GMT + - Tue, 14 Mar 2023 05:11:37 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -120,21 +120,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:03:08 GMT + - Tue, 14 Mar 2023 05:12:07 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -166,21 +166,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:03:38 GMT + - Tue, 14 Mar 2023 05:12:38 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -212,21 +212,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:04:09 GMT + - Tue, 14 Mar 2023 05:13:08 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -258,21 +258,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:04:39 GMT + - Tue, 14 Mar 2023 05:13:38 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -304,21 +304,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:05:09 GMT + - Tue, 14 Mar 2023 05:14:08 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -350,21 +350,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:05:39 GMT + - Tue, 14 Mar 2023 05:14:38 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -396,21 +396,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:06:09 GMT + - Tue, 14 Mar 2023 05:15:08 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -442,21 +442,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-13T05:02:06.182638Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Accepted","startTime":"2023-03-14T05:11:05.8606995Z"}' headers: cache-control: - no-cache content-length: - - '506' + - '507' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:06:39 GMT + - Tue, 14 Mar 2023 05:15:38 GMT etag: - - '"44001614-0000-0d00-0000-640eae4e0000"' + - '"4b008a62-0000-0d00-0000-641001e90000"' expires: - '-1' pragma: @@ -488,21 +488,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"a788a299-5e69-42ae-9222-14de605b8817*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Succeeded","startTime":"2023-03-13T05:02:06.182638Z","endTime":"2023-03-13T05:06:52.9241692Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"96ee2a5c-8492-4aef-a5df-aaabcdd22cde*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Succeeded","startTime":"2023-03-14T05:11:05.8606995Z","endTime":"2023-03-14T05:16:04.6193491Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '577' + - '578' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:10 GMT + - Tue, 14 Mar 2023 05:16:09 GMT etag: - - '"4400c319-0000-0d00-0000-640eaf6c0000"' + - '"4b00d368-0000-0d00-0000-641003140000"' expires: - '-1' pragma: @@ -537,7 +537,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -546,9 +546,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:11 GMT + - Tue, 14 Mar 2023 05:16:10 GMT etag: - - '"6500b728-0000-0d00-0000-640eaf6c0000"' + - '"6e007452-0000-0d00-0000-641003140000"' expires: - '-1' pragma: @@ -615,19 +615,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 13 Mar 2023 05:07:11 GMT + - Tue, 14 Mar 2023 05:16:10 GMT duration: - - '2794051' + - '1079442' expires: - '-1' ocp-aad-diagnostics-server-name: - - Zryn/nJhmx33/ODaCN+uiYD6e4W/jenH2OAdKcQ9HmQ= + - xTd8xvTuq1dweLqP1AcL+kh8+62p8XdDmW5DTNMaMu8= ocp-aad-session-key: - - bsAbUO6QZJpDFvBRXfj11v-Q7cW35QLCySo0meFtuBlcuxk1xqt9ynxRa76XccIBXWft3-wCAoR1-PDm9H4If05zKuUT0Qsmy3KX1_JLKcIDNg-mlb7-0C7HrvUmtoQ1.XWjKKeowVy8sxaEJHY7nmKFWAZci0racQHVi-Ci0yg8 + - SXvAKWDJRpMlKZg-PJt87pPOYMyL4j9F4FafSwMU3X3mTI1kZhqT8UDcGrS5duLYZQ6v1eerzZhqc3eIkZ79vd4IONNJn74FU94MqQ6hg9Hs4NHdMfsbiFIMatl-8YmH.-_yBQgamS6CawagTx1P8yMjutEhTgfaZlujWazrHSy4 pragma: - no-cache request-id: - - 6a039e15-6869-4596-af76-4aa3d66712f4 + - 715bb696-e891-4286-95ba-2257f90d45a8 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -671,7 +671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:11 GMT + - Tue, 14 Mar 2023 05:16:10 GMT expires: - '-1' pragma: @@ -711,10 +711,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:13.4802479Z","updatedOn":"2023-03-13T05:07:13.9542551Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:16:13.1090129Z","updatedOn":"2023-03-14T05:16:13.6040245Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -723,7 +723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:14 GMT + - Tue, 14 Mar 2023 05:16:15 GMT expires: - '-1' pragma: @@ -769,7 +769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:15 GMT + - Tue, 14 Mar 2023 05:16:15 GMT expires: - '-1' pragma: @@ -789,7 +789,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "2402dc06-39df-4d3d-a3a2-bf407882db2a", "principalType": "ServicePrincipal"}}' + "principalId": "22ac13cc-36cd-4984-a5e8-bee63e6e34c6", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -809,10 +809,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:16.1316699Z","updatedOn":"2023-03-13T05:07:16.5736704Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:16:16.0795212Z","updatedOn":"2023-03-14T05:16:16.4755921Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -821,7 +821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:17 GMT + - Tue, 14 Mar 2023 05:16:17 GMT expires: - '-1' pragma: @@ -856,7 +856,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache @@ -865,7 +865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:18 GMT + - Tue, 14 Mar 2023 05:18:19 GMT expires: - '-1' pragma: @@ -877,19 +877,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 298f893a-0659-4dd8-9a2f-602231a3fc3c - - 48a64665-b3b5-49fc-9d44-203f3312a728 - - 5b6a6672-9379-4def-909f-d97c6f33527e - - 31f8825f-b6d6-40f7-a20d-baa9d744e87a - - 5895d232-ff26-4994-bb37-c10fe31065ce - - 66b97f5c-dceb-4844-9351-181c44390b48 - - 5583feb9-09b4-47b6-ab6f-a05e5509eb41 - - c6ab7746-6973-447e-be5f-b2664112aaf8 - - e8911341-2e13-44fb-84d0-dee332a22bbf - - fa5308f8-39f0-47e8-985a-94f00f7c3236 - - e40d7925-55c6-451f-960d-c02853249612 - - bf4092bd-654a-40c8-be38-75eff81823b5 - - f0319f4c-f3e9-4ec5-8513-d4ba11125837 + - 782adfd7-4711-4cd8-beca-b8024f819da8 + - 5d744a49-8a68-42ab-9c1f-f447b0a3910e + - b0cdb296-76c3-4b42-bf8e-d83cb311f5ee + - bf788fad-0fc4-4e87-a518-ae87fabfdc94 + - ea8ee88e-1bcb-477d-944f-adee5b4fec65 + - 04edfaa1-3d6b-40aa-8e8d-f18086971ffb + - bf9a8a90-6fbb-441a-99c1-33bd1a63afa8 + - a2a19f6a-0af6-4b60-a85d-9a685326e030 + - 642d9324-7852-4510-895c-27d37e3c5aa1 + - ef9abf77-8731-45cd-8b05-b1fea6ae385d + - f790937a-0fc6-46cd-a74f-ecb1b97ea0bb + - f5c23671-eae7-44bc-b49d-145e99ccce87 + - b7a2ed7a-def3-4351-b25c-91c16fc95585 status: code: 200 message: OK @@ -910,16 +910,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T22:55:22.3312261Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":null,"endpoint":null,"zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amgrjjj7jxf5mh4m7pyagdvayszbsahhksz74i6m7jhdb5lnpg4oq3l6hnjkkf3cah/providers/Microsoft.Dashboard/grafana/clitestamg2","name":"clitestamg2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.887186Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.1111088Z"},"identity":{"principalId":"6113ec71-42aa-4dbd-87b4-9bbf61ba86e1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestamg2-avhnfvgwe8fvasek.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Disabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg4d4aquxgcqhoazuxlpfxndej2tfxawsjadndnwhporqkzhhzrv3h2swx55pizki/providers/Microsoft.Dashboard/grafana/clitestbackup","name":"clitestbackup","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.68013Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.68013Z"},"identity":{"principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amglkj3k7cdgdabtveydskutvx5r4xyj3jaqqxq2gkobc6eut5mei3nipa7edbra6k/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:17:39.4514616Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg4d4aquxgcqhoazuxlpfxndej2tfxawsjadndnwhporqkzhhzrv3h2swx55pizki/providers/Microsoft.Dashboard/grafana/clitestbackup2","name":"clitestbackup2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:15:39.8079842Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.8079842Z"},"identity":{"principalId":"b8ae7cb8-5381-4be0-92e1-678d7d276a21","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '3432' + - '8155' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:20 GMT + - Tue, 14 Mar 2023 05:18:21 GMT expires: - '-1' pragma: @@ -931,19 +931,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - d1ab19ed-20a8-4303-a39d-e56ea2d6dcbc - - 82bc98a4-6f59-4bd2-9c07-83395fad0a61 - - 486f36dd-b0a7-45c6-acec-e22d2fbf1764 - - 3dd768c6-5332-4ed6-a8df-43d4b82840ae - - ff6e2dbf-ecdb-4b99-93df-ecb947b66b07 - - db9b2c30-4fd5-495a-9176-34ff7eb4199d - - 60917e13-eefc-41ba-9bda-5ec09bc412a4 - - 17628fb7-8567-44b1-bae1-f085389783b6 - - 828d84ed-72b9-4ecc-9f17-8c2ccee21779 - - b756a9d1-1248-45bd-9403-916ff6cb0be0 - - 40722fc3-2b8a-4518-a8a1-70bb7c717452 - - aa1b9169-f9f2-469e-a2f2-b4002bdc329a - - d0d3d3a9-819d-4d18-a5c4-7539ceca3161 + - b7f6c7d2-2469-48e9-a231-bae1e65b21ab + - 6e50bb36-5b33-4b66-b08c-704942685012 + - e9835238-3c98-447a-95ef-0f6fad6f5537 + - d9f0732f-e390-4f12-a13f-4b11d3fd2d1e + - 0323276d-bc4d-4e76-8b92-5692c60a65a9 + - 55f4ba60-e3fb-4716-b807-c7a29a2f3bd4 + - 0c00009c-f554-43ba-8aef-c2a71e7028ee + - 6f82879f-091d-4963-a273-f2682e36d6a6 + - 4f55f643-8e2a-4d22-bbd0-9c2060a8b735 + - 74b651ee-56a8-4223-b325-76b4ab8dd2cd + - 3c1f0321-e2ad-4ad9-8b1a-3b016c7f2564 + - 9594bdd1-071e-4c14-bb27-e704be67c2a2 + - 10d9a642-c483-49b6-921f-a4e52d344c70 status: code: 200 message: OK @@ -966,7 +966,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -975,9 +975,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:23 GMT + - Tue, 14 Mar 2023 05:18:22 GMT etag: - - '"6500b728-0000-0d00-0000-640eaf6c0000"' + - '"6e007452-0000-0d00-0000-641003140000"' expires: - '-1' pragma: @@ -1014,7 +1014,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -1023,9 +1023,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:25 GMT + - Tue, 14 Mar 2023 05:18:24 GMT etag: - - '"6500b728-0000-0d00-0000-640eaf6c0000"' + - '"6e007452-0000-0d00-0000-641003140000"' expires: - '-1' pragma: @@ -1060,7 +1060,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/org/users response: body: - string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-03-13T05:07:28Z","lastSeenAtAge":"\u003c + string: '[{"orgId":1,"userId":2,"email":"example@example.com","name":"example@example.com","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b","login":"example@example.com","role":"Admin","lastSeenAt":"2023-03-14T05:18:27Z","lastSeenAtAge":"\u003c 1 minute","isDisabled":false}]' headers: cache-control: @@ -1070,14 +1070,14 @@ interactions: content-length: - '272' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3ioleCmYoWqz2GkO2ui23A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vsGOEHHxocC3h6iO3gkJSg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:28 GMT + - Tue, 14 Mar 2023 05:18:27 GMT expires: - '-1' pragma: @@ -1085,7 +1085,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684047.344.27.355764|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771106.543.30.743507|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1116,7 +1116,7 @@ interactions: response: body: string: '{"id":2,"email":"example@example.com","name":"example@example.com","login":"example@example.com","theme":"","orgId":1,"isGrafanaAdmin":false,"isDisabled":false,"isExternal":true,"authLabels":["Auth - Proxy"],"updatedAt":"2023-03-13T05:07:27Z","createdAt":"2023-03-13T05:07:27Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' + Proxy"],"updatedAt":"2023-03-14T05:18:26Z","createdAt":"2023-03-14T05:18:26Z","avatarUrl":"/avatar/3d063897fed105833776e2dba66ec90b"}' headers: cache-control: - no-cache @@ -1125,14 +1125,14 @@ interactions: content-length: - '331' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5BLXaE5q5rLEIH/hEOe4GA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-unathSy/HALg9zUkiD9wuA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:28 GMT + - Tue, 14 Mar 2023 05:18:27 GMT expires: - '-1' pragma: @@ -1140,7 +1140,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684049.685.30.728918|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771108.697.27.658953|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1172,7 +1172,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '{"id":24,"uid":"yhCZhoa4z","title":"Test Folder","url":"/dashboards/f/yhCZhoa4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T05:07:29.882477459Z","updatedBy":"example@example.com","updated":"2023-03-13T05:07:29.882477559Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"5JyMkb-4k","title":"Test Folder","url":"/dashboards/f/5JyMkb-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:18:28.397131821Z","updatedBy":"example@example.com","updated":"2023-03-14T05:18:28.397131921Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -1181,14 +1181,14 @@ interactions: content-length: - '352' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8gEK9EFMvc3RQeuzhfZeSg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zd2gaKLInolHA8i4Lx8gOQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:29 GMT + - Tue, 14 Mar 2023 05:18:28 GMT expires: - '-1' pragma: @@ -1196,7 +1196,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684050.528.29.136064|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771109.367.31.700087|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1226,7 +1226,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/id/Test%20Folder response: body: - string: '{"message":"id is invalid","traceID":"7098630e988324475a34542c9fb270a6"}' + string: '{"message":"id is invalid","traceID":"11b1cb8e98ef5b0eb3faf364f571c8b4"}' headers: cache-control: - no-cache @@ -1235,14 +1235,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lOxpXIWCgkdfNCgFsyl23g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-z9TbHr0zadTVjSVU92uEfw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:30 GMT + - Tue, 14 Mar 2023 05:18:29 GMT expires: - '-1' pragma: @@ -1250,7 +1250,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684051.545.28.707208|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771110.082.29.168487|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1289,14 +1289,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lJpCPCUx1oAKyLRd8xIpKw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-IuoONwioPi0A+E2eKlINAw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:31 GMT + - Tue, 14 Mar 2023 05:18:29 GMT expires: - '-1' pragma: @@ -1304,7 +1304,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684052.121.30.241635|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771110.773.29.204305|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1334,7 +1334,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"yhCZhoa4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"5JyMkb-4k","title":"Test Folder"}]' headers: cache-control: @@ -1344,14 +1344,14 @@ interactions: content-length: - '141' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pF+yMKIXrawpucbRN7dAGg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ew/WIZx94bkyIfN5ejN2Ww';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:31 GMT + - Tue, 14 Mar 2023 05:18:30 GMT expires: - '-1' pragma: @@ -1359,7 +1359,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684052.662.32.716787|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771111.477.31.182613|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1386,10 +1386,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/id/yhCZhoa4z + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/id/5JyMkb-4k response: body: - string: '{"message":"id is invalid","traceID":"1b1f627f754a086df05a5ad69c9884ca"}' + string: '{"message":"id is invalid","traceID":"65b5788881ee0bb5f85c33503a4e25ae"}' headers: cache-control: - no-cache @@ -1398,14 +1398,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dwtPqmkyTN+kTK41OMZoIA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dhFgWnW5jMML1YXKmN5wNg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:32 GMT + - Tue, 14 Mar 2023 05:18:31 GMT expires: - '-1' pragma: @@ -1413,7 +1413,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684053.313.27.328862|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771112.153.30.944214|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1440,10 +1440,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/yhCZhoa4z + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/5JyMkb-4k response: body: - string: '{"id":24,"uid":"yhCZhoa4z","title":"Test Folder","url":"/dashboards/f/yhCZhoa4z/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T05:07:29Z","updatedBy":"example@example.com","updated":"2023-03-13T05:07:29Z","version":1,"parentUid":""}' + string: '{"id":24,"uid":"5JyMkb-4k","title":"Test Folder","url":"/dashboards/f/5JyMkb-4k/test-folder","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:18:28Z","updatedBy":"example@example.com","updated":"2023-03-14T05:18:28Z","version":1,"parentUid":""}' headers: cache-control: - no-cache @@ -1452,14 +1452,14 @@ interactions: content-length: - '332' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-G9Cs9sahIkU00LdTEBSlgw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kLDaPU5nxBExRg6OMBUHoA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:32 GMT + - Tue, 14 Mar 2023 05:18:31 GMT expires: - '-1' pragma: @@ -1467,7 +1467,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684053.849.29.624301|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771112.704.29.196856|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1496,10 +1496,10 @@ interactions: content-type: - application/json method: PUT - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/yhCZhoa4z + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/5JyMkb-4k response: body: - string: '{"id":24,"uid":"yhCZhoa4z","title":"Test Folder Update","url":"/dashboards/f/yhCZhoa4z/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-13T05:07:29Z","updatedBy":"example@example.com","updated":"2023-03-13T05:07:33Z","version":2,"parentUid":""}' + string: '{"id":24,"uid":"5JyMkb-4k","title":"Test Folder Update","url":"/dashboards/f/5JyMkb-4k/test-folder-update","hasAcl":false,"canSave":true,"canEdit":true,"canAdmin":true,"canDelete":true,"createdBy":"example@example.com","created":"2023-03-14T05:18:28Z","updatedBy":"example@example.com","updated":"2023-03-14T05:18:32Z","version":2,"parentUid":""}' headers: cache-control: - no-cache @@ -1508,14 +1508,14 @@ interactions: content-length: - '346' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CX3OAZyOy+Zn/uVZgV57MQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fmahvYRa86fBEfAYijU2sA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:33 GMT + - Tue, 14 Mar 2023 05:18:32 GMT expires: - '-1' pragma: @@ -1523,7 +1523,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684054.419.31.853533|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771113.255.28.421999|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1553,7 +1553,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"yhCZhoa4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"5JyMkb-4k","title":"Test Folder Update"}]' headers: cache-control: @@ -1563,14 +1563,14 @@ interactions: content-length: - '148' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rjdy6p+AVMALTqOJHn6e/Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-v8ZD2vrOwr847f1V8dpiHg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:34 GMT + - Tue, 14 Mar 2023 05:18:32 GMT expires: - '-1' pragma: @@ -1578,7 +1578,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684055.133.28.832875|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771113.951.28.809861|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1608,7 +1608,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/id/Test%20Folder%20Update response: body: - string: '{"message":"id is invalid","traceID":"f25f2705de5ae10341fd08d2314f2d84"}' + string: '{"message":"id is invalid","traceID":"d0cdde5d6c9a57c019d91b25cd55bf78"}' headers: cache-control: - no-cache @@ -1617,14 +1617,14 @@ interactions: content-length: - '72' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Vh2yNsYCOISiKeyq8SkoFg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cOwrUZkuJV0rJHPM8Sqdzw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:34 GMT + - Tue, 14 Mar 2023 05:18:33 GMT expires: - '-1' pragma: @@ -1632,7 +1632,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684055.814.30.124940|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771114.615.32.766024|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1671,14 +1671,14 @@ interactions: content-length: - '51' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VWoQAWvZIsUzWeMUYmJXfA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ekEJWapBpDJv1UDZqP8Yaw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:35 GMT + - Tue, 14 Mar 2023 05:18:34 GMT expires: - '-1' pragma: @@ -1686,7 +1686,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684056.357.28.222107|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771115.188.28.458023|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1716,7 +1716,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders response: body: - string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"yhCZhoa4z","title":"Test + string: '[{"id":1,"uid":"az-mon","title":"Azure Monitor"},{"id":12,"uid":"geneva","title":"Geneva"},{"id":24,"uid":"5JyMkb-4k","title":"Test Folder Update"}]' headers: cache-control: @@ -1726,14 +1726,14 @@ interactions: content-length: - '148' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-h89Xsp91R3clqCK7ptbSKA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-S+4bC/KHX9LL+jEzEpsrHg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:35 GMT + - Tue, 14 Mar 2023 05:18:34 GMT expires: - '-1' pragma: @@ -1741,7 +1741,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684056.931.30.54178|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771115.751.29.28399|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1770,7 +1770,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/yhCZhoa4z + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/folders/5JyMkb-4k response: body: string: '' @@ -1782,14 +1782,14 @@ interactions: content-length: - '0' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Eqoe2liYytKK7kIdUK22PA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/FgbLJ1+qhkGEEtRnHGTVQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:36 GMT + - Tue, 14 Mar 2023 05:18:35 GMT expires: - '-1' pragma: @@ -1797,7 +1797,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684057.483.27.421296|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771116.313.29.126428|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1836,14 +1836,14 @@ interactions: content-length: - '91' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-H7crq9XFSpF9byItxoAcjQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8z6KLmBNNUv35jwMZbzyvQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:37 GMT + - Tue, 14 Mar 2023 05:18:36 GMT expires: - '-1' pragma: @@ -1851,7 +1851,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684058.259.31.498093|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771117.061.30.412202|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1884,7 +1884,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources response: body: - string: '{"datasource":{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"NE6Gkxa4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource added","name":"Test Azure Monitor Data Source"}' headers: @@ -1895,14 +1895,14 @@ interactions: content-length: - '461' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-dC8OjZS3Lp7cqdxJk9MDjQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-nwk5ISG/gG7MWYERVK7QGQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:37 GMT + - Tue, 14 Mar 2023 05:18:36 GMT expires: - '-1' pragma: @@ -1910,7 +1910,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684058.917.29.469824|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771117.722.30.523406|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1940,7 +1940,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"NE6Gkxa4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -1950,14 +1950,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-/MV4V7ESQrT44hzftyHgsg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-U9MxtKevpmXmP7lSlwoUUA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:38 GMT + - Tue, 14 Mar 2023 05:18:37 GMT expires: - '-1' pragma: @@ -1965,7 +1965,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684059.618.28.50295|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771118.409.29.713572|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1995,7 +1995,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"NE6Gkxa4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2005,14 +2005,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-04RWezammx5aT1D/tTmU8w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-n+eG3oVP6yvWw84OHRkHWQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:39 GMT + - Tue, 14 Mar 2023 05:18:38 GMT expires: - '-1' pragma: @@ -2020,7 +2020,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684060.296.29.422209|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771119.069.27.283077|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2053,7 +2053,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/3 response: body: - string: '{"datasource":{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure + string: '{"datasource":{"id":3,"uid":"NE6Gkxa4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false},"id":3,"message":"Datasource updated","name":"Test Azure Monitor Data Source"}' headers: @@ -2064,14 +2064,14 @@ interactions: content-length: - '463' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DF92uuEJK6NtMBrm6L1bwQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-iHVMxqDIY1mWewP62DuHnw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:39 GMT + - Tue, 14 Mar 2023 05:18:38 GMT expires: - '-1' pragma: @@ -2079,7 +2079,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684060.847.28.777206|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771119.628.29.18136|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2111,7 +2111,7 @@ interactions: body: string: '[{"id":1,"uid":"azure-monitor-oob","orgId":1,"name":"Azure Monitor","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":"2462343E-2B86-44E6-A7CE-6FF5E5C3E2E7"},"readOnly":false},{"id":2,"uid":"Geneva","orgId":1,"name":"Geneva - Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test + Datasource","type":"geneva-datasource","typeName":"Geneva Datasource","typeLogoUrl":"public/plugins/geneva-datasource/img/logo.svg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureCredentials":{"authType":"msi"}},"readOnly":false},{"id":3,"uid":"NE6Gkxa4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeName":"Azure Monitor","typeLogoUrl":"public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg","access":"proxy","url":"","user":"","database":"","basicAuth":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"readOnly":false}]' headers: @@ -2122,14 +2122,14 @@ interactions: content-length: - '1155' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-d3QfKSZ6LinVH9dGjd22Qw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DZuWGAkHdfdbY+bUZbnMog';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:40 GMT + - Tue, 14 Mar 2023 05:18:39 GMT expires: - '-1' pragma: @@ -2137,7 +2137,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684061.552.32.152251|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771120.344.28.698828|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2167,7 +2167,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/name/Test%20Azure%20Monitor%20Data%20Source response: body: - string: '{"id":3,"uid":"kF7M2T-Vk","orgId":1,"name":"Test Azure Monitor Data + string: '{"id":3,"uid":"NE6Gkxa4k","orgId":1,"name":"Test Azure Monitor Data Source","type":"grafana-azure-monitor-datasource","typeLogoUrl":"","access":"proxy","url":"","user":"","database":"","basicAuth":false,"basicAuthUser":"","withCredentials":false,"isDefault":false,"jsonData":{"azureAuthType":"msi","subscriptionId":""},"secureJsonFields":{},"version":1,"readOnly":false}' headers: cache-control: @@ -2177,14 +2177,14 @@ interactions: content-length: - '370' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sMDJSKCAUGusSzYUPoBt2A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Te0ukEWZ/2V2UgZHmIA8Qw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:41 GMT + - Tue, 14 Mar 2023 05:18:40 GMT expires: - '-1' pragma: @@ -2192,7 +2192,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684062.226.28.452143|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771121.025.29.245563|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2221,7 +2221,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/uid/kF7M2T-Vk + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/datasources/uid/NE6Gkxa4k response: body: string: '{"id":3,"message":"Data source deleted"}' @@ -2233,14 +2233,14 @@ interactions: content-length: - '40' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-svbW1g6qzd1Xq2xOizTBYw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3obgf8wpvbl2H+eElXxI5A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:41 GMT + - Tue, 14 Mar 2023 05:18:40 GMT expires: - '-1' pragma: @@ -2248,7 +2248,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684062.793.28.51352|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771121.736.29.328731|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2289,14 +2289,14 @@ interactions: content-length: - '759' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zGOKy6FbuEHDQfRrmnprlQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-fBkmgEBTogthGnM+8Gh7PA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:42 GMT + - Tue, 14 Mar 2023 05:18:41 GMT expires: - '-1' pragma: @@ -2304,7 +2304,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684063.492.29.59763|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771122.405.29.351398|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2337,7 +2337,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications response: body: - string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43.195263151Z","updated":"2023-03-13T05:07:43.195263251Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"uCM7zb-Vk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-14T05:18:42.110537324Z","updated":"2023-03-14T05:18:42.110537424Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2346,14 +2346,14 @@ interactions: content-length: - '340' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CqgBnfAsx5dWojYhO8i47w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-2DPlJa5ok4e9xNcve5dIfA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:43 GMT + - Tue, 14 Mar 2023 05:18:42 GMT expires: - '-1' pragma: @@ -2361,7 +2361,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684064.161.28.748322|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771123.092.29.375958|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2388,10 +2388,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1hdG2oaVz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uCM7zb-Vk response: body: - string: '{"message":"notificationId is invalid","traceID":"d010aab587a2c4dd03d2492ab3000552"}' + string: '{"message":"notificationId is invalid","traceID":"faea57cb16513ad7e2318f727507cffb"}' headers: cache-control: - no-cache @@ -2400,14 +2400,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-FFWOuK+/rfxSXvU6zHpIzg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8zdcGtQoM0sGfC2K1cBNnA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:43 GMT + - Tue, 14 Mar 2023 05:18:42 GMT expires: - '-1' pragma: @@ -2415,7 +2415,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684064.832.28.442195|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771123.768.32.936339|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2442,10 +2442,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/1hdG2oaVz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/uCM7zb-Vk response: body: - string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:43Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"uCM7zb-Vk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-14T05:18:42Z","updated":"2023-03-14T05:18:42Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2454,14 +2454,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-GIDL6l2BPIw10PhOa19tCA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-kSCGxTXsJvFPNF3DZIh6sA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:44 GMT + - Tue, 14 Mar 2023 05:18:43 GMT expires: - '-1' pragma: @@ -2469,7 +2469,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684065.389.30.712079|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771124.392.27.473283|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2496,10 +2496,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1hdG2oaVz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uCM7zb-Vk response: body: - string: '{"message":"notificationId is invalid","traceID":"87fcd081d9439ab36fcbc5cd2d79e952"}' + string: '{"message":"notificationId is invalid","traceID":"15d802fc6d94c782c5cd072b634724dc"}' headers: cache-control: - no-cache @@ -2508,14 +2508,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-6lfZGLrHfcqI4BtoygZQgQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-rqKv8vRSlTKBMFrgxxNcmQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:45 GMT + - Tue, 14 Mar 2023 05:18:44 GMT expires: - '-1' pragma: @@ -2523,7 +2523,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684066.044.30.150105|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771125.065.29.919055|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2550,10 +2550,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/1hdG2oaVz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/uCM7zb-Vk response: body: - string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:43Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"uCM7zb-Vk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-14T05:18:42Z","updated":"2023-03-14T05:18:42Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2562,14 +2562,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-U3vBxJZRZnDJ3SKA1wp8NA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XvAhzF4+csqk1rfGyXjAcQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:45 GMT + - Tue, 14 Mar 2023 05:18:44 GMT expires: - '-1' pragma: @@ -2577,7 +2577,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684066.59.29.312028|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771125.6.27.636132|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2610,7 +2610,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1 response: body: - string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:46Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"uCM7zb-Vk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-14T05:18:42Z","updated":"2023-03-14T05:18:45Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2619,14 +2619,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LXC7PwvM6SztH7TdBdBj1A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VVxC37SLy7F74/PQn7Pibg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:46 GMT + - Tue, 14 Mar 2023 05:18:45 GMT expires: - '-1' pragma: @@ -2634,7 +2634,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684067.134.28.882239|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771126.172.30.372628|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2664,7 +2664,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications response: body: - string: '[{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:46Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' + string: '[{"id":1,"uid":"uCM7zb-Vk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-14T05:18:42Z","updated":"2023-03-14T05:18:45Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}]' headers: cache-control: - no-cache @@ -2673,14 +2673,14 @@ interactions: content-length: - '322' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pvu/oig8BKxPIyH1/WiWtw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-DMhWgxrj+JhXk7GDUFW+mQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:47 GMT + - Tue, 14 Mar 2023 05:18:45 GMT expires: - '-1' pragma: @@ -2688,7 +2688,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684068.245.30.917488|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771126.868.32.724134|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2715,10 +2715,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/1hdG2oaVz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uCM7zb-Vk response: body: - string: '{"message":"notificationId is invalid","traceID":"14a1ac63f8e0601dfb1723773d32e89e"}' + string: '{"message":"notificationId is invalid","traceID":"c6b927e0efc48a0f1ab211b3ec96ad92"}' headers: cache-control: - no-cache @@ -2727,14 +2727,14 @@ interactions: content-length: - '84' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3IjBVv/LZkzwC/KSjvXyrw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-clgaoSu0J4pF20Z6ZHsE+w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:47 GMT + - Tue, 14 Mar 2023 05:18:46 GMT expires: - '-1' pragma: @@ -2742,7 +2742,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684068.911.29.787501|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771127.537.27.561032|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2769,10 +2769,10 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/1hdG2oaVz + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/alert-notifications/uid/uCM7zb-Vk response: body: - string: '{"id":1,"uid":"1hdG2oaVz","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-13T05:07:43Z","updated":"2023-03-13T05:07:46Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' + string: '{"id":1,"uid":"uCM7zb-Vk","name":"Test Teams Notification Channel","type":"teams","isDefault":false,"sendReminder":false,"disableResolveMessage":false,"frequency":"","created":"2023-03-14T05:18:42Z","updated":"2023-03-14T05:18:45Z","settings":{"url":"https://test.webhook.office.com/IncomingWebhook/"},"secureFields":{}}' headers: cache-control: - no-cache @@ -2781,14 +2781,14 @@ interactions: content-length: - '320' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YQIXcYk5aoVLogpFDpirRw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-g0WSZ7SVsTeIg12VpkFRcQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:48 GMT + - Tue, 14 Mar 2023 05:18:47 GMT expires: - '-1' pragma: @@ -2796,7 +2796,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684069.468.29.13745|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771128.154.29.822434|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2837,14 +2837,14 @@ interactions: content-length: - '34' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3fw+llnYziA14lseamGgqg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-B3XtYZB79B82Z3jQ0j8E8g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:49 GMT + - Tue, 14 Mar 2023 05:18:47 GMT expires: - '-1' pragma: @@ -2852,7 +2852,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684070.026.30.34792|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771128.724.32.582672|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2891,14 +2891,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-RUiuircs2+HVmGcLzoeO+g';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hlPQs7W+rq0J/iwhXKqGKA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:49 GMT + - Tue, 14 Mar 2023 05:18:48 GMT expires: - '-1' pragma: @@ -2906,7 +2906,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684070.704.29.12109|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771129.413.29.436412|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2938,7 +2938,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"5A1GhTa4k","url":"/d/5A1GhTa4k/test-dashboard","version":1}' + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"TUK7kx-Vz","url":"/d/TUK7kx-Vz/test-dashboard","version":1}' headers: cache-control: - no-cache @@ -2947,14 +2947,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-AfnvLDT/JOwe9syR6Qkw0w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-bPR1ML3fRQLT3c3levKWrA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:50 GMT + - Tue, 14 Mar 2023 05:18:49 GMT expires: - '-1' pragma: @@ -2962,7 +2962,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684071.369.32.47541|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771130.083.27.326976|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2989,11 +2989,11 @@ interactions: content-type: - application/json method: GET - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/uid/5A1GhTa4k + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/uid/TUK7kx-Vz response: body: - string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/5A1GhTa4k/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-13T05:07:50Z","updated":"2023-03-13T05:07:50Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test - Dashboard","uid":"5A1GhTa4k","version":1}}' + string: '{"meta":{"type":"db","canSave":true,"canEdit":true,"canAdmin":true,"canStar":true,"canDelete":true,"slug":"test-dashboard","url":"/d/TUK7kx-Vz/test-dashboard","expires":"0001-01-01T00:00:00Z","created":"2023-03-14T05:18:49Z","updated":"2023-03-14T05:18:49Z","updatedBy":"example@example.com","createdBy":"example@example.com","version":1,"hasAcl":false,"isFolder":false,"folderId":0,"folderUid":"","folderTitle":"General","folderUrl":"","provisioned":false,"provisionedExternalId":"","annotationsPermissions":{"dashboard":{"canAdd":false,"canEdit":false,"canDelete":false},"organization":{"canAdd":false,"canEdit":false,"canDelete":false}},"hasPublicDashboard":false,"publicDashboardAccessToken":"","publicDashboardUid":"","publicDashboardEnabled":false},"dashboard":{"id":25,"title":"Test + Dashboard","uid":"TUK7kx-Vz","version":1}}' headers: cache-control: - no-cache @@ -3002,14 +3002,14 @@ interactions: content-length: - '832' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-SrM+VXYr4mt0qk4OKxD8xA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-eFEnHqID7bARWG4MwghLWA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:51 GMT + - Tue, 14 Mar 2023 05:18:49 GMT expires: - '-1' pragma: @@ -3017,7 +3017,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684072.081.29.918027|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771130.766.31.886523|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3031,7 +3031,7 @@ interactions: code: 200 message: OK - request: - body: '{"dashboard": {"title": "Test Dashboard", "uid": "5A1GhTa4k", "version": + body: '{"dashboard": {"title": "Test Dashboard", "uid": "TUK7kx-Vz", "version": 1}, "overwrite": true}' headers: Accept: @@ -3050,7 +3050,7 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/db response: body: - string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"5A1GhTa4k","url":"/d/5A1GhTa4k/test-dashboard","version":2}' + string: '{"id":25,"slug":"test-dashboard","status":"success","uid":"TUK7kx-Vz","url":"/d/TUK7kx-Vz/test-dashboard","version":2}' headers: cache-control: - no-cache @@ -3059,14 +3059,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sPO6LE2OkDcQxDpp1ZwcVQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9mK25ghbSsjsIP1wN6sTFQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:51 GMT + - Tue, 14 Mar 2023 05:18:50 GMT expires: - '-1' pragma: @@ -3074,7 +3074,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684072.763.29.471495|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771131.441.29.522773|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3104,51 +3104,51 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":17,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":22,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":13,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"5A1GhTa4k","title":"Test - Dashboard","uri":"db/test-dashboard","url":"/d/5A1GhTa4k/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":16,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":20,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"TUK7kx-Vz","title":"Test + Dashboard","uri":"db/test-dashboard","url":"/d/TUK7kx-Vz/test-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-zA57i9kb4DXPAh1/trIN3Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-NSTBO3Dbx7MxV6lj1MSQ0A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:52 GMT + - Tue, 14 Mar 2023 05:18:51 GMT expires: - '-1' pragma: @@ -3156,7 +3156,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684073.512.29.74141|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771132.149.30.104406|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3197,14 +3197,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Nl9VJxaGzxgEH7COduWmUQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-MGzlCFmXsPifHmU3KdF8Pw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:53 GMT + - Tue, 14 Mar 2023 05:18:51 GMT expires: - '-1' pragma: @@ -3212,7 +3212,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684074.097.28.648939|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771132.724.29.589743|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3241,7 +3241,7 @@ interactions: content-type: - application/json method: DELETE - uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/uid/5A1GhTa4k + uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/dashboards/uid/TUK7kx-Vz response: body: string: '{"id":25,"message":"Dashboard Test Dashboard deleted","title":"Test @@ -3254,14 +3254,14 @@ interactions: content-length: - '79' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-d+SMsYq4L9gdVLlRyvlYMw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yN/IfW6pVSv84cHn+7cqJg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:53 GMT + - Tue, 14 Mar 2023 05:18:52 GMT expires: - '-1' pragma: @@ -3269,7 +3269,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684074.767.31.120406|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771133.428.30.903022|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3299,50 +3299,50 @@ interactions: uri: https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":17,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":22,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":13,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":20,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9IvWwElX9p78QmWNNqjXqQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sXtp2zP7dWnJrurshiceiA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:54 GMT + - Tue, 14 Mar 2023 05:18:53 GMT expires: - '-1' pragma: @@ -3350,7 +3350,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684075.496.29.664863|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771134.124.27.419024|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3391,14 +3391,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-F3XGdHWfDaFHTsGw0de6OA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Odll5xj9vXe/+AyZTRu3+Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 05:07:55 GMT + - Tue, 14 Mar 2023 05:18:53 GMT expires: - '-1' pragma: @@ -3406,7 +3406,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678684076.058.27.152058|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678771134.701.30.613360|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -3438,7 +3438,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T05:02:04.3393564Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T05:02:04.3393564Z"},"identity":{"principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","name":"clitestamge2e","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westeurope","tags":{"foo":"doo"},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:11:03.5590786Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:11:03.5590786Z"},"identity":{"principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://clitestamge2e-a3e4eufjfkekbgc2.weu.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -3447,9 +3447,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:55 GMT + - Tue, 14 Mar 2023 05:18:54 GMT etag: - - '"6500b728-0000-0d00-0000-640eaf6c0000"' + - '"6e007452-0000-0d00-0000-641003140000"' expires: - '-1' pragma: @@ -3493,7 +3493,7 @@ interactions: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -3501,13 +3501,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:07:57 GMT + - Tue, 14 Mar 2023 05:18:56 GMT etag: - - '"6500692a-0000-0d00-0000-640eafad0000"' + - '"6e00ee56-0000-0d00-0000-641003c10000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -3539,10 +3539,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3551,9 +3551,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:08:27 GMT + - Tue, 14 Mar 2023 05:19:26 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3581,10 +3581,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3593,9 +3593,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:08:58 GMT + - Tue, 14 Mar 2023 05:19:56 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3623,10 +3623,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3635,9 +3635,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:09:28 GMT + - Tue, 14 Mar 2023 05:20:27 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3665,10 +3665,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3677,9 +3677,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:09:58 GMT + - Tue, 14 Mar 2023 05:20:57 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3707,10 +3707,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3719,9 +3719,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:10:28 GMT + - Tue, 14 Mar 2023 05:21:27 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3749,10 +3749,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3761,9 +3761,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:10:58 GMT + - Tue, 14 Mar 2023 05:21:57 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3791,10 +3791,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3803,9 +3803,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:11:28 GMT + - Tue, 14 Mar 2023 05:22:27 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3833,10 +3833,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3845,9 +3845,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:11:58 GMT + - Tue, 14 Mar 2023 05:22:57 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3875,10 +3875,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3887,9 +3887,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:12:28 GMT + - Tue, 14 Mar 2023 05:23:29 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3917,10 +3917,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3929,9 +3929,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:12:59 GMT + - Tue, 14 Mar 2023 05:23:59 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -3959,10 +3959,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -3971,9 +3971,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:13:29 GMT + - Tue, 14 Mar 2023 05:24:29 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -4001,10 +4001,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -4013,9 +4013,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:13:59 GMT + - Tue, 14 Mar 2023 05:24:59 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -4043,10 +4043,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-13T05:07:57.4037051Z","error":{}}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Deleting","startTime":"2023-03-14T05:18:56.7087144Z","error":{}}' headers: cache-control: - no-cache @@ -4055,9 +4055,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:14:29 GMT + - Tue, 14 Mar 2023 05:25:29 GMT etag: - - '"4400401b-0000-0d00-0000-640eafb40000"' + - '"4b008f6c-0000-0d00-0000-641003c80000"' expires: - '-1' pragma: @@ -4085,10 +4085,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","name":"f577f928-e717-4558-982c-d351b9a48993*F946561C8834297764A779AA30C9C9E98FA3D001DA39909A98EFD00CE1DFAAF3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Succeeded","startTime":"2023-03-13T05:07:57.4037051Z","endTime":"2023-03-13T05:14:37.6566178Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTEUROPE/operationStatuses/71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","name":"71509fc6-3974-4c00-8401-fd78f8f0e9e9*BAF9A9AE8C99BF52C68E96738CDD36223A5FCD516CCC7B10D4EEE6A2EDA6A0A7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamge2e","status":"Succeeded","startTime":"2023-03-14T05:18:56.7087144Z","endTime":"2023-03-14T05:25:38.0150292Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -4097,9 +4097,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:15:01 GMT + - Tue, 14 Mar 2023 05:26:00 GMT etag: - - '"4400dc22-0000-0d00-0000-640eb13d0000"' + - '"4b007c74-0000-0d00-0000-641005520000"' expires: - '-1' pragma: @@ -4132,10 +4132,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?api-version=2022-04-01&$filter=principalId%20eq%20'2402dc06-39df-4d3d-a3a2-bf407882db2a' + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%2722ac13cc-36cd-4984-a5e8-bee63e6e34c6%27&api-version=2020-04-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:16.8366817Z","updatedOn":"2023-03-13T05:07:16.8366817Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:16:16.7136078Z","updatedOn":"2023-03-14T05:16:16.7136078Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' headers: cache-control: - no-cache @@ -4144,7 +4144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:15:00 GMT + - Tue, 14 Mar 2023 05:26:00 GMT expires: - '-1' pragma: @@ -4183,10 +4183,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"2402dc06-39df-4d3d-a3a2-bf407882db2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T05:07:16.8366817Z","updatedOn":"2023-03-13T05:15:02.2163053Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"22ac13cc-36cd-4984-a5e8-bee63e6e34c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:16:16.7136078Z","updatedOn":"2023-03-14T05:26:01.8528274Z","createdBy":"a30db067-cde1-49be-95bb-9619a8cc8617","updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -4195,7 +4195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:15:03 GMT + - Tue, 14 Mar 2023 05:26:03 GMT expires: - '-1' pragma: @@ -4230,16 +4230,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Dashboard/grafana?api-version=2022-10-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-12T16:35:23.8875817Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.6","endpoint":"https://yugangwdummy-gbhahddwbrc2a7ec.scus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwdummy","name":"yugangwdummy","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-12T16:35:23.8875817Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T22:55:22.3312261Z"},"identity":{"principalId":"abb0e4b5-b802-4702-99e6-8b7a4b41d40a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":null,"endpoint":null,"zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/workspaces/providers/Microsoft.Dashboard/grafana/yugangwwcus","name":"yugangwwcus","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2022-06-18T15:53:09.0679646Z","lastModifiedBy":"ce34e7e5-485f-4d76-964f-b3d2b16d1e4f","lastModifiedByType":"Application","lastModifiedAt":"2023-03-09T17:00:10.9394042Z"},"identity":{"principalId":"72f1ec37-9f30-4329-8a24-b669fa665c7d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://yugangwwcus-b2dyaqd5eygsdfcf.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Enabled","outboundIPs":["52.161.126.36","52.161.147.164"],"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[{"azureMonitorWorkspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/workspaces/providers/microsoft.monitor/accounts/yugangwmac"}]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg4d4aquxgcqhoazuxlpfxndej2tfxawsjadndnwhporqkzhhzrv3h2swx55pizki/providers/Microsoft.Dashboard/grafana/clitestbackup","name":"clitestbackup","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.68013Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.68013Z"},"identity":{"principalId":"0d34d309-e819-41f9-a7ec-8b5bbadabc74","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup-gzccd3f9abdcese4.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg4d4aquxgcqhoazuxlpfxndej2tfxawsjadndnwhporqkzhhzrv3h2swx55pizki/providers/Microsoft.Dashboard/grafana/clitestbackup2","name":"clitestbackup2","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:15:39.8079842Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:15:39.8079842Z"},"identity":{"principalId":"b8ae7cb8-5381-4be0-92e1-678d7d276a21","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Deleting","grafanaVersion":"9.3.8","endpoint":"https://clitestbackup2-ekfbc4c4ekfec9f7.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}]}' headers: cache-control: - no-cache content-length: - - '2357' + - '4565' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 05:15:04 GMT + - Tue, 14 Mar 2023 05:26:04 GMT expires: - '-1' pragma: @@ -4251,19 +4251,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - d22d9aab-03d3-4a77-9ac0-1769c45ca77f - - e64991d3-8492-4ca2-a945-8d59a1be6c18 - - bd3b29e8-d7a9-4c4c-a0eb-52910542ac35 - - 136e6ad4-d377-4ef1-982b-2b8f2361abf1 - - 54570476-3b64-4e82-b4d6-5740bb79ba39 - - 14a3766d-6cee-4e7b-a2cc-cd334c313a76 - - 82a663da-0654-48ae-bc65-a0a3f1b9cc82 - - a0cb1b66-8b9e-4fbb-9dd2-5977bb730494 - - 139b4fed-bd1d-4f5d-aef2-f1cd062580f4 - - f7130d5f-3d48-4e4f-abe1-a70d3ef2ec0e - - 8745617a-7df4-46f6-968a-0ce4a3a7b7fb - - c9202db5-dc89-41e4-82a6-681f654a21f9 - - 25e792af-1746-4fc3-b543-84f23f8c32aa + - ad813ab7-a30f-4c8e-9cdf-740704056ce0 + - bfe92535-1be9-4b4e-bb92-bfbb6cb796c7 + - 0d4b5946-dc07-43fb-83af-86aa8b8759c5 + - e423daa7-c60e-49b6-87f2-bd1467e2c8ec + - 43ed9b2c-7e57-4e60-aee3-ed5f1d7c1228 + - 27e8248d-0b58-4c5b-bf3c-2f9f225e9009 + - f81d36a9-cdce-4159-a673-687f350841ae + - d6c57f3b-2381-49bc-8a24-049eaf63f382 + - d7b7726a-1ac9-4bf5-81ca-f858b44b9e26 + - 3a3ac79b-8aa0-4f59-aec6-58155095ca3f + - 7d39608e-7160-4abe-86f1-a377ce5d57e5 + - b9e4fa76-0464-442b-915d-ea52d1dd2f94 + - 6bdd48c4-b22f-47f7-933e-b2c7ed6fec17 status: code: 200 message: OK diff --git a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml index 60203fd396d..9e329657637 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_api_key_e2e.yaml @@ -23,12 +23,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.3299407Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.8959147Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:07:58 GMT + - Tue, 14 Mar 2023 05:11:00 GMT etag: - - '"d9001ebd-0000-0600-0000-640e938e0000"' + - '"830148d8-0000-0600-0000-641001e40000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -74,10 +74,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:08:28 GMT + - Tue, 14 Mar 2023 05:11:30 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -120,10 +120,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:08:58 GMT + - Tue, 14 Mar 2023 05:12:00 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -166,10 +166,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:09:28 GMT + - Tue, 14 Mar 2023 05:12:31 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -212,10 +212,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:09:58 GMT + - Tue, 14 Mar 2023 05:13:01 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -258,10 +258,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:10:29 GMT + - Tue, 14 Mar 2023 05:13:30 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -304,10 +304,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:10:59 GMT + - Tue, 14 Mar 2023 05:14:00 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -350,10 +350,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:11:29 GMT + - Tue, 14 Mar 2023 05:14:30 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -396,10 +396,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-13T03:07:58.3403988Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Accepted","startTime":"2023-03-14T05:10:59.8991357Z"}' headers: cache-control: - no-cache @@ -408,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:11:58 GMT + - Tue, 14 Mar 2023 05:15:01 GMT etag: - - '"5f003e72-0000-0600-0000-640e938e0000"' + - '"0000e5d6-0000-0600-0000-641001e30000"' expires: - '-1' pragma: @@ -442,21 +442,21 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","name":"25c13fef-dca6-4870-b2d2-3383a76b9878*270AE63C120242E90A3DC113F779669E59BD91F6FAD5593A1D575CA48943CE70","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2023-03-13T03:07:58.3403988Z","endTime":"2023-03-13T03:12:16.3988924Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","name":"890a7638-d4fd-4713-9974-2ad19b1bafe7*B5FCFE760F00F0D78C48AB42B5C3671C02F130EC859397D8BB470D952C728EC0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","status":"Succeeded","startTime":"2023-03-14T05:10:59.8991357Z","endTime":"2023-03-14T05:15:25.899344Z","error":{},"properties":null}' headers: cache-control: - no-cache content-length: - - '584' + - '583' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:28 GMT + - Tue, 14 Mar 2023 05:15:31 GMT etag: - - '"5f004d72-0000-0600-0000-640e94900000"' + - '"0000b3d8-0000-0600-0000-641002ed0000"' expires: - '-1' pragma: @@ -491,7 +491,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.3299407Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.8959147Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -500,9 +500,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:28 GMT + - Tue, 14 Mar 2023 05:15:31 GMT etag: - - '"d90054c0-0000-0600-0000-640e94900000"' + - '"830109dc-0000-0600-0000-641002ed0000"' expires: - '-1' pragma: @@ -569,19 +569,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 13 Mar 2023 03:12:29 GMT + - Tue, 14 Mar 2023 05:15:31 GMT duration: - - '945969' + - '1457782' expires: - '-1' ocp-aad-diagnostics-server-name: - - fNJQLP+XgRrm+wVx1qc7dEY/m8VHKivWMsUXF78l0zo= + - Kcj6O8AhvlP67jwDQIOCphYt1vK6v1TUDhL8+5tLo2I= ocp-aad-session-key: - - HrwqAY722rBQleTUlJGqqX2_YZCM0nOQnsujZqoMn_PPj8bYP4yKrekVGGXqYo1hw1KaokamtnmK2b_YvOdJYDoNVGE05eYUA3YTau01CGML89JiVffeI5u_t27kwkxP.t7tEVhBJik5uqkIHshgDFqaVluArMj0HfrOYhTONz50 + - F6USaa1_2Cet08u218bs1maS7MXKY9gyRWsv28xkGMrvdL65-1snYo97Sus59jAatF8uKMKMS6b_nwG8QJFNG8ewe4kZzPluOic_HOuyV7tutvQK5fai_YmNbv4lgKUF.rlilHl-iLDpfjF-N0yx5V_blV5WFYXxMuofecU-0V1Y pragma: - no-cache request-id: - - a9e187e5-74c2-4553-9746-d9472c2dd993 + - 1cbbe0fa-a528-4703-9e6b-f31bbd48c006 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -625,7 +625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:29 GMT + - Tue, 14 Mar 2023 05:15:31 GMT expires: - '-1' pragma: @@ -665,10 +665,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:30.8782200Z","updatedOn":"2023-03-13T03:12:31.2832276Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:15:33.0096017Z","updatedOn":"2023-03-14T05:15:33.4796025Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -677,7 +677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:33 GMT + - Tue, 14 Mar 2023 05:15:35 GMT expires: - '-1' pragma: @@ -723,7 +723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:33 GMT + - Tue, 14 Mar 2023 05:15:35 GMT expires: - '-1' pragma: @@ -743,7 +743,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "eb979301-fad0-4919-9583-4cbfdb448d65", "principalType": "ServicePrincipal"}}' + "principalId": "3d134997-118f-47e0-96e6-c1db148387e3", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -763,10 +763,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:34.2031745Z","updatedOn":"2023-03-13T03:12:34.6641861Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"3d134997-118f-47e0-96e6-c1db148387e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T05:15:36.4619826Z","updatedOn":"2023-03-14T05:15:36.8709859Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -775,7 +775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:36 GMT + - Tue, 14 Mar 2023 05:15:37 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.3299407Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:10:58.8959147Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -819,9 +819,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:36 GMT + - Tue, 14 Mar 2023 05:17:39 GMT etag: - - '"d90054c0-0000-0600-0000-640e94900000"' + - '"830109dc-0000-0600-0000-641002ed0000"' expires: - '-1' pragma: @@ -867,7 +867,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3974818Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:17:39.4514616Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview @@ -878,9 +878,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:37 GMT + - Tue, 14 Mar 2023 05:17:40 GMT etag: - - '"d90056c0-0000-0600-0000-640e94a50000"' + - '"8301afdd-0000-0600-0000-641003740000"' expires: - '-1' pragma: @@ -921,7 +921,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.3299407Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3974818Z"},"identity":{"principalId":"eb979301-fad0-4919-9583-4cbfdb448d65","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestamgapikey","name":"clitestamgapikey","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T05:10:58.8959147Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T05:17:39.4514616Z"},"identity":{"principalId":"3d134997-118f-47e0-96e6-c1db148387e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -930,9 +930,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:38 GMT + - Tue, 14 Mar 2023 05:17:40 GMT etag: - - '"d90056c0-0000-0600-0000-640e94a50000"' + - '"8301afdd-0000-0600-0000-641003740000"' expires: - '-1' pragma: @@ -976,14 +976,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vD82fUwUWltQCcmV/Abegw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-TCVRYiUh67P90oeeV07I7g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:40 GMT + - Tue, 14 Mar 2023 05:17:43 GMT expires: - '-1' pragma: @@ -991,7 +991,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677160.429.440.880364|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771062.746.443.911269|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1023,7 +1023,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":1,"name":"apikey1","key":"eyJrIjoidEhkdGtwTEtTWFB1U3JBWUp1VzdORGlFa0JDUzJUOHUiLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' + string: '{"id":1,"name":"apikey1","key":"eyJrIjoiSUlLVWdmYWpIblNhZHliVUFxelozQXJ6dEl4SE5iZFEiLCJuIjoiYXBpa2V5MSIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1032,14 +1032,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-pHZN4i3ULA9zaaIjU3cNRA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-4J+dDQBj+IJK9NDaoC6bbQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:42 GMT + - Tue, 14 Mar 2023 05:17:43 GMT expires: - '-1' pragma: @@ -1047,7 +1047,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677161.566.436.516517|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771064.893.442.229723|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1079,7 +1079,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys response: body: - string: '{"id":2,"name":"apikey2","key":"eyJrIjoiYTJWZGVUUndlTDl5d1BqbmtwN2hVdU9DVGswcGdQUFEiLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' + string: '{"id":2,"name":"apikey2","key":"eyJrIjoicHMyVTVQVXFpNE1nTEJhUU4xTnR4SkVhN1F6NGxyU20iLCJuIjoiYXBpa2V5MiIsImlkIjoxfQ=="}' headers: cache-control: - no-cache @@ -1088,14 +1088,14 @@ interactions: content-length: - '118' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-xH2OuWYzCTLzVyRSFxSf9A';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-LJX14r2AS0MEKD4c9iA50Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:42 GMT + - Tue, 14 Mar 2023 05:17:44 GMT expires: - '-1' pragma: @@ -1103,7 +1103,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677163.539.442.814131|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771065.205.438.752931|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1133,7 +1133,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-16T03:12:42Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-14T03:12:42Z"}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-17T05:17:43Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-15T05:17:44Z"}]' headers: cache-control: - no-cache @@ -1142,14 +1142,14 @@ interactions: content-length: - '156' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Ox7GgxJfWyRaqIOJjDEqWA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-geYKvdEIKvFiPubBcbWEAQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:42 GMT + - Tue, 14 Mar 2023 05:17:44 GMT expires: - '-1' pragma: @@ -1157,8 +1157,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677163.895.440.915114|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771065.52.440.155684|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1187,7 +1187,7 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/auth/keys?includedExpired=false&accesscontrol=true response: body: - string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-16T03:12:42Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-14T03:12:42Z"}]' + string: '[{"id":1,"name":"apikey1","role":"Admin","expiration":"2023-03-17T05:17:43Z"},{"id":2,"name":"apikey2","role":"Viewer","expiration":"2023-03-15T05:17:44Z"}]' headers: cache-control: - no-cache @@ -1196,14 +1196,14 @@ interactions: content-length: - '156' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-0IQtAs836/ylFfK+ARr3HQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-cVvSGhfIrV6SHquUD+UqVw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:43 GMT + - Tue, 14 Mar 2023 05:17:45 GMT expires: - '-1' pragma: @@ -1211,8 +1211,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677164.22.441.732838|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678771066.112.435.195234|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1252,14 +1252,14 @@ interactions: content-length: - '29' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5szfhlYDBZXOhi9hhDOMUQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-PQ3wu68L8OsRE/fZlz8Yyg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:43 GMT + - Tue, 14 Mar 2023 05:17:45 GMT expires: - '-1' pragma: @@ -1267,7 +1267,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677164.442.442.952072|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771066.891.441.644107|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1297,13 +1297,13 @@ interactions: uri: https://clitestamgapikey-etcge6b7emaecdaa.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":10,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":22,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":7,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure @@ -1311,36 +1311,36 @@ interactions: / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":6,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":16,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":21,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":17,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":15,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":13,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-yIupLp2sVwhea1SwQcy8fw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-s2Xc4L5luUZUOVgIxDDp8Q';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:43 GMT + - Tue, 14 Mar 2023 05:17:46 GMT expires: - '-1' pragma: @@ -1348,7 +1348,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677164.755.440.281067|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678771067.166.443.682395|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1389,14 +1389,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gMQ5GGO26sg2B/Y5H4796w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-IoRSkb8QObu2d51iZjGDWA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:44 GMT + - Tue, 14 Mar 2023 05:17:46 GMT expires: - '-1' pragma: @@ -1404,8 +1404,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677164.958.439.139670|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678771067.41.435.964893|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: diff --git a/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml index 87be1f4ec37..4acbcb4814e 100644 --- a/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml +++ b/src/amg/azext_amg/tests/latest/recordings/test_service_account_e2e.yaml @@ -23,12 +23,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.2444753Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T03:56:22.6608833Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T03:56:22.6608833Z"},"identity":{"principalId":"3a563b97-4ef2-4d7f-9990-860cebccb1f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","grafanaVersion":null,"endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview cache-control: - no-cache content-length: @@ -36,13 +36,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:07:58 GMT + - Tue, 14 Mar 2023 03:56:24 GMT etag: - - '"d9001fbd-0000-0600-0000-640e938e0000"' + - '"830123a0-0000-0600-0000-640ff0680000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + - https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview pragma: - no-cache request-context: @@ -74,10 +74,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-14T03:56:24.0739633Z"}' headers: cache-control: - no-cache @@ -86,9 +86,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:08:28 GMT + - Tue, 14 Mar 2023 03:56:54 GMT etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' + - '"000099b6-0000-0600-0000-640ff0680000"' expires: - '-1' pragma: @@ -120,10 +120,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-14T03:56:24.0739633Z"}' headers: cache-control: - no-cache @@ -132,9 +132,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:08:58 GMT + - Tue, 14 Mar 2023 03:57:23 GMT etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' + - '"000099b6-0000-0600-0000-640ff0680000"' expires: - '-1' pragma: @@ -166,10 +166,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-14T03:56:24.0739633Z"}' headers: cache-control: - no-cache @@ -178,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:09:28 GMT + - Tue, 14 Mar 2023 03:57:53 GMT etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' + - '"000099b6-0000-0600-0000-640ff0680000"' expires: - '-1' pragma: @@ -212,10 +212,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-14T03:56:24.0739633Z"}' headers: cache-control: - no-cache @@ -224,9 +224,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:09:59 GMT + - Tue, 14 Mar 2023 03:58:23 GMT etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' + - '"000099b6-0000-0600-0000-640ff0680000"' expires: - '-1' pragma: @@ -258,10 +258,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-14T03:56:24.0739633Z"}' headers: cache-control: - no-cache @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:10:29 GMT + - Tue, 14 Mar 2023 03:58:53 GMT etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' + - '"000099b6-0000-0600-0000-640ff0680000"' expires: - '-1' pragma: @@ -304,10 +304,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-14T03:56:24.0739633Z"}' headers: cache-control: - no-cache @@ -316,9 +316,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:10:59 GMT + - Tue, 14 Mar 2023 03:59:24 GMT etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' + - '"000099b6-0000-0600-0000-640ff0680000"' expires: - '-1' pragma: @@ -350,10 +350,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-14T03:56:24.0739633Z"}' headers: cache-control: - no-cache @@ -362,9 +362,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:11:28 GMT + - Tue, 14 Mar 2023 03:59:54 GMT etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' + - '"000099b6-0000-0600-0000-640ff0680000"' expires: - '-1' pragma: @@ -396,56 +396,10 @@ interactions: User-Agent: - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview + uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328?api-version=2022-10-01-preview response: body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Accepted","startTime":"2023-03-13T03:07:58.4131039Z"}' - headers: - cache-control: - - no-cache - content-length: - - '518' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 03:11:58 GMT - etag: - - '"5f003f72-0000-0600-0000-640e938e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - grafana create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l - User-Agent: - - AZURECLI/2.46.0 (MSI) azsdk-python-mgmt-dashboard/1.0.0b1 Python/3.8.8 (Windows-10-10.0.22621-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","name":"77f8cd5f-8555-46a2-b42f-cd75ae2a1b06*8DBCA273A4D41F30E4EFB7D4BD4A7643D7A5CAE32EC73242FF1629DCA53C132B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Succeeded","startTime":"2023-03-13T03:07:58.4131039Z","endTime":"2023-03-13T03:12:11.7756626Z","error":{},"properties":null}' + string: '{"id":"/providers/Microsoft.Dashboard/locations/WESTCENTRALUS/operationStatuses/55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","name":"55e94c45-9235-40f1-b5ce-d10ddd65f28a*540A880743CBC9BF214177566212D51C84D1747E748B22E8459B816E51CDA328","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","status":"Succeeded","startTime":"2023-03-14T03:56:24.0739633Z","endTime":"2023-03-14T04:00:12.7412315Z","error":{},"properties":null}' headers: cache-control: - no-cache @@ -454,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:29 GMT + - Tue, 14 Mar 2023 04:00:24 GMT etag: - - '"5f004c72-0000-0600-0000-640e948b0000"' + - '"00006bb8-0000-0600-0000-640ff14c0000"' expires: - '-1' pragma: @@ -491,7 +445,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.2444753Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T03:56:22.6608833Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T03:56:22.6608833Z"},"identity":{"principalId":"3a563b97-4ef2-4d7f-9990-860cebccb1f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -500,9 +454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:29 GMT + - Tue, 14 Mar 2023 04:00:24 GMT etag: - - '"d90052c0-0000-0600-0000-640e948b0000"' + - '"83011ca3-0000-0600-0000-640ff14c0000"' expires: - '-1' pragma: @@ -569,19 +523,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 13 Mar 2023 03:12:29 GMT + - Tue, 14 Mar 2023 04:00:25 GMT duration: - - '970996' + - '1498980' expires: - '-1' ocp-aad-diagnostics-server-name: - - Sw9P2+QqQbSqlfnbi4jt/jyPRHaSpgfKprX26GOn7EE= + - a3p3A2kxqFamjAAXuNIzEx1v3QLwJ0oU67k8tbWcvAw= ocp-aad-session-key: - - 9s7ED5-btx2d-y-DGy7BiRx1NAVmQeuMKTauYwdhQVAXDFpa5r5_dsRKH1vckkSmGsTieIJfbD1wirypKQ8z15eWV3s39h5VGcQHebIAPeof3h7X-ehR9EvzKBkB6EQT.bSF-r0RdYz36h-BLDMYvyMjx14bDwS2p7DcmpoTi90k + - JotrX1jZvDiPvgUqFvum5SUsBoE4L3O17pjjP4cvqJLSEUkl6v6eJ9cjoMfd6l4un43Vzg7jdlr6Pl6B6PEaTi5lmXOj1yXXqY85tpqH80GdT8dIryzVoc1ubv7aVPrH.Ea2g1rwG2TVFd2wAwyO9lvhRW5BQlLpfvrjOpokfpDM pragma: - no-cache request-id: - - 6346f14a-897f-47b7-80f0-6afcc853c516 + - 7da9a76e-82fb-46f9-b42a-98f729d2a2c1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -625,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:30 GMT + - Tue, 14 Mar 2023 04:00:25 GMT expires: - '-1' pragma: @@ -665,10 +619,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:30.9600656Z","updatedOn":"2023-03-13T03:12:31.4000700Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41","principalId":"a30db067-cde1-49be-95bb-9619a8cc8617","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T04:00:26.4435567Z","updatedOn":"2023-03-14T04:00:26.8635622Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -677,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:33 GMT + - Tue, 14 Mar 2023 04:00:29 GMT expires: - '-1' pragma: @@ -723,7 +677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:33 GMT + - Tue, 14 Mar 2023 04:00:29 GMT expires: - '-1' pragma: @@ -743,7 +697,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05", - "principalId": "d374e3a1-e5ef-493d-8df5-9982028c35f0", "principalType": "ServicePrincipal"}}' + "principalId": "3a563b97-4ef2-4d7f-9990-860cebccb1f6", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -763,10 +717,10 @@ interactions: - AZURECLI/2.46.0 (MSI) azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.8 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T03:12:33.9428483Z","updatedOn":"2023-03-13T03:12:34.3616451Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"3a563b97-4ef2-4d7f-9990-860cebccb1f6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T04:00:29.9899982Z","updatedOn":"2023-03-14T04:00:30.4960089Z","createdBy":null,"updatedBy":"a30db067-cde1-49be-95bb-9619a8cc8617","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -775,7 +729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:35 GMT + - Tue, 14 Mar 2023 04:00:32 GMT expires: - '-1' pragma: @@ -810,7 +764,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:07:57.2444753Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T03:56:22.6608833Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T03:56:22.6608833Z"},"identity":{"principalId":"3a563b97-4ef2-4d7f-9990-860cebccb1f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Disabled","deterministicOutboundIP":"Disabled","grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -819,9 +773,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:36 GMT + - Tue, 14 Mar 2023 04:00:33 GMT etag: - - '"d90052c0-0000-0600-0000-640e948b0000"' + - '"83011ca3-0000-0600-0000-640ff14c0000"' expires: - '-1' pragma: @@ -867,7 +821,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3634342Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T03:56:22.6608833Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T04:00:33.4589244Z"},"identity":{"principalId":"3a563b97-4ef2-4d7f-9990-860cebccb1f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: api-supported-versions: - 2021-09-01-preview, 2022-05-01-preview, 2022-08-01, 2022-10-01-preview @@ -878,9 +832,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:38 GMT + - Tue, 14 Mar 2023 04:00:34 GMT etag: - - '"d90055c0-0000-0600-0000-640e94a50000"' + - '"830168a3-0000-0600-0000-640ff1610000"' expires: - '-1' pragma: @@ -921,7 +875,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-13T03:07:57.2444753Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-13T03:12:37.3634342Z"},"identity":{"principalId":"d374e3a1-e5ef-493d-8df5-9982028c35f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_amg000001/providers/Microsoft.Dashboard/grafana/clitestserviceaccount","name":"clitestserviceaccount","type":"microsoft.dashboard/grafana","sku":{"name":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"example@example.com","createdByType":"User","createdAt":"2023-03-14T03:56:22.6608833Z","lastModifiedBy":"example@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-14T04:00:33.4589244Z"},"identity":{"principalId":"3a563b97-4ef2-4d7f-9990-860cebccb1f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","grafanaVersion":"9.3.8","endpoint":"https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com","zoneRedundancy":"Disabled","publicNetworkAccess":"Enabled","privateEndpointConnections":null,"autoGeneratedDomainNameLabelScope":"TenantReuse","apiKey":"Enabled","deterministicOutboundIP":"Disabled","outboundIPs":null,"grafanaIntegrations":{"azureMonitorWorkspaceIntegrations":[]},"enterpriseConfigurations":null,"grafanaConfigurations":{"smtp":{"enabled":false}}}}' headers: cache-control: - no-cache @@ -930,9 +884,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 03:12:38 GMT + - Tue, 14 Mar 2023 04:00:34 GMT etag: - - '"d90055c0-0000-0600-0000-640e94a50000"' + - '"830168a3-0000-0600-0000-640ff1610000"' expires: - '-1' pragma: @@ -976,14 +930,14 @@ interactions: content-length: - '61' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-oNFH7DyJ5q9y6DT1Qql9Og';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5RWXszXDKFMC/Y83ogFWgg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:41 GMT + - Tue, 14 Mar 2023 04:00:36 GMT expires: - '-1' pragma: @@ -991,7 +945,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677160.524.442.465772|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766436.711.442.159904|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1032,14 +986,14 @@ interactions: content-length: - '117' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-x5pW6scOq7N7ZoETSCnnrQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-L+nAwMLczpRjXP17ReSUSQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:42 GMT + - Tue, 14 Mar 2023 04:00:37 GMT expires: - '-1' pragma: @@ -1047,7 +1001,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677162.957.441.507948|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766438.086.442.880508|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1086,14 +1040,14 @@ interactions: content-length: - '217' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9z7FnQKMwn/RbwHQPdxZUw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-i4c902WI4LyKwknxmIyY4A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:42 GMT + - Tue, 14 Mar 2023 04:00:37 GMT expires: - '-1' pragma: @@ -1101,7 +1055,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677163.538.438.581668|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766438.472.439.971647|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1133,7 +1087,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 response: body: - string: '{"id":3,"message":"Service account updated","name":"myServiceAccount","serviceaccount":{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-13T03:12:42Z","updatedAt":"2023-03-13T03:12:42Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}}' + string: '{"id":3,"message":"Service account updated","name":"myServiceAccount","serviceaccount":{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-14T04:00:37Z","updatedAt":"2023-03-14T04:00:37Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}}' headers: cache-control: - no-cache @@ -1142,14 +1096,14 @@ interactions: content-length: - '325' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VcO0rROBs7kuTd7057WxOw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-+Ma1NzdzHy3BwDypAtpFRg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:42 GMT + - Tue, 14 Mar 2023 04:00:37 GMT expires: - '-1' pragma: @@ -1157,7 +1111,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677163.765.439.976540|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766438.672.440.105820|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1196,14 +1150,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9RiXZD/J5/Pa4cF4DILGWQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-lJsqXJQOSXUewXnLLOPnzQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:43 GMT + - Tue, 14 Mar 2023 04:00:39 GMT expires: - '-1' pragma: @@ -1211,8 +1165,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677164.078.438.813526|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678766439.440.130526|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1241,7 +1195,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3 response: body: - string: '{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-13T03:12:42Z","updatedAt":"2023-03-13T03:12:42Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}' + string: '{"id":3,"name":"myServiceAccount","login":"sa-oldname","orgId":1,"isDisabled":false,"createdAt":"2023-03-14T04:00:37Z","updatedAt":"2023-03-14T04:00:37Z","avatarUrl":"/avatar/2500c98b645dbb9405e34002e460d53e","role":"Admin","teams":null}' headers: cache-control: - no-cache @@ -1250,14 +1204,14 @@ interactions: content-length: - '237' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-OqwB43y7DxK9mlchUNN1Tg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1wmusx8TzQUC0YbSlWHnFg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:43 GMT + - Tue, 14 Mar 2023 04:00:39 GMT expires: - '-1' pragma: @@ -1265,7 +1219,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677164.643.441.656593|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766440.784.442.919785|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1304,14 +1258,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-hJn8nnXJtZMsCDTXLG3HGw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-obQErB1Zj0VjXdQmPghHOw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:43 GMT + - Tue, 14 Mar 2023 04:00:40 GMT expires: - '-1' pragma: @@ -1319,8 +1273,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677164.939.438.655657|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678766441.09.438.364842|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1358,14 +1312,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-e2+u8vYD04sdc6YzVJffFQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9sWF/5kVCU80EubORtWNVQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:44 GMT + - Tue, 14 Mar 2023 04:00:40 GMT expires: - '-1' pragma: @@ -1373,8 +1327,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677165.226.441.466492|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678766441.62.439.733592|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1405,7 +1359,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '{"id":1,"name":"myToken","key":"glsa_hkISw5eoobGQpAXMe9CokO0begIBI0tm_5dbbd742"}' + string: '{"id":1,"name":"myToken","key":"glsa_8eFr5dLxlDLvQCTD7APrAnIpYWwE7HAf_ae2e81eb"}' headers: cache-control: - no-cache @@ -1414,14 +1368,14 @@ interactions: content-length: - '80' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-XZ3hxxpzK10qrYG1tVduww';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-5z02SrnvL/UT3Pz/C+g65g';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:44 GMT + - Tue, 14 Mar 2023 04:00:40 GMT expires: - '-1' pragma: @@ -1429,7 +1383,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677165.448.439.570961|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766441.807.440.382422|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1468,14 +1422,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-amKn2B6SV8Xh/vB2HHwJYg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8ai+uITKiCk/0Ifbu8rCCg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:44 GMT + - Tue, 14 Mar 2023 04:00:41 GMT expires: - '-1' pragma: @@ -1483,7 +1437,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677165.811.438.60273|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + - INGRESSCOOKIE=1678766442.128.435.67502|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1513,7 +1467,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '[{"id":1,"name":"myToken","created":"2023-03-13T03:12:44Z","lastUsedAt":null,"expiration":"2023-03-14T03:12:44Z","secondsUntilExpiration":86398.945803913,"hasExpired":false,"isRevoked":false}]' + string: '[{"id":1,"name":"myToken","created":"2023-03-14T04:00:40Z","lastUsedAt":null,"expiration":"2023-03-15T04:00:40Z","secondsUntilExpiration":86398.655839032,"hasExpired":false,"isRevoked":false}]' headers: cache-control: - no-cache @@ -1522,14 +1476,14 @@ interactions: content-length: - '192' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-paNKeeFXzPBhHvlGoVkysg';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-vCC1L4lBGm+P7pqR+hqFAA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:45 GMT + - Tue, 14 Mar 2023 04:00:41 GMT expires: - '-1' pragma: @@ -1537,7 +1491,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677166.035.442.544534|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766442.323.441.916277|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1567,50 +1521,50 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/search?type=dash-db&limit=5000&page=1 response: body: - string: '[{"id":17,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":13,"uid":"54KhiZ7nz","title":"AKS - Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":14,"uid":"6uRDjTNnz","title":"App - Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure + string: '[{"id":23,"uid":"OSBzdgnnz","title":"Agent QoS","uri":"db/agent-qos","url":"/d/OSBzdgnnz/agent-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"54KhiZ7nz","title":"AKS + Linux Sample Application","uri":"db/aks-linux-sample-application","url":"/d/54KhiZ7nz/aks-linux-sample-application","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":25,"uid":"6uRDjTNnz","title":"App + Detail","uri":"db/app-detail","url":"/d/6uRDjTNnz/app-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":6,"uid":"dyzn5SK7z","title":"Azure / Alert Consumption","uri":"db/azure-alert-consumption","url":"/d/dyzn5SK7z/azure-alert-consumption","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"Yo38mcvnz","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"Yo38mcvnz","title":"Azure / Insights / Applications","uri":"db/azure-insights-applications","url":"/d/Yo38mcvnz/azure-insights-applications","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AppInsightsAvTestGeoMap","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":12,"uid":"AppInsightsAvTestGeoMap","title":"Azure / Insights / Applications Test Availability Geo Map","uri":"db/azure-insights-applications-test-availability-geo-map","url":"/d/AppInsightsAvTestGeoMap/azure-insights-applications-test-availability-geo-map","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":9,"uid":"INH9berMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":2,"uid":"INH9berMk","title":"Azure / Insights / Cosmos DB","uri":"db/azure-insights-cosmos-db","url":"/d/INH9berMk/azure-insights-cosmos-db","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":10,"uid":"8UDB1s3Gk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"8UDB1s3Gk","title":"Azure / Insights / Data Explorer Clusters","uri":"db/azure-insights-data-explorer-clusters","url":"/d/8UDB1s3Gk/azure-insights-data-explorer-clusters","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"tQZAMYrMk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"tQZAMYrMk","title":"Azure / Insights / Key Vaults","uri":"db/azure-insights-key-vaults","url":"/d/tQZAMYrMk/azure-insights-key-vaults","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":11,"uid":"3n2E8CrGk","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"3n2E8CrGk","title":"Azure / Insights / Storage Accounts","uri":"db/azure-insights-storage-accounts","url":"/d/3n2E8CrGk/azure-insights-storage-accounts","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":7,"uid":"AzVmInsightsByRG","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":14,"uid":"AzVmInsightsByRG","title":"Azure / Insights / Virtual Machines by Resource Group","uri":"db/azure-insights-virtual-machines-by-resource-group","url":"/d/AzVmInsightsByRG/azure-insights-virtual-machines-by-resource-group","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":5,"uid":"AzVmInsightsByWS","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":8,"uid":"AzVmInsightsByWS","title":"Azure / Insights / Virtual Machines by Workspace","uri":"db/azure-insights-virtual-machines-by-workspace","url":"/d/AzVmInsightsByWS/azure-insights-virtual-machines-by-workspace","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":3,"uid":"Mtwt2BV7k","title":"Azure + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":4,"uid":"Mtwt2BV7k","title":"Azure / Resources Overview","uri":"db/azure-resources-overview","url":"/d/Mtwt2BV7k/azure-resources-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":1,"folderUid":"az-mon","folderTitle":"Azure - Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":15,"uid":"xLERdASnz","title":"Cluster - Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"QTVw7iK7z","title":"Geneva - Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":18,"uid":"icm-example","title":"IcM - Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"sVKyjvpnz","title":"Incoming - Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":16,"uid":"_sKhXTH7z","title":"Node - Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing - Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"GIgvhSV7z","title":"Service - Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":23,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":12,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' + Monitor","folderUrl":"/dashboards/f/az-mon/azure-monitor","sortMeta":0},{"id":26,"uid":"xLERdASnz","title":"Cluster + Detail","uri":"db/cluster-detail","url":"/d/xLERdASnz/cluster-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":27,"uid":"QTVw7iK7z","title":"Geneva + Health","uri":"db/geneva-health","url":"/d/QTVw7iK7z/geneva-health","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":24,"uid":"icm-example","title":"IcM + Canned Dashboard","uri":"db/icm-canned-dashboard","url":"/d/icm-example/icm-canned-dashboard","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":19,"uid":"sVKyjvpnz","title":"Incoming + Service QoS","uri":"db/incoming-service-qos","url":"/d/sVKyjvpnz/incoming-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":20,"uid":"_sKhXTH7z","title":"Node + Detail","uri":"db/node-detail","url":"/d/_sKhXTH7z/node-detail","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":21,"uid":"6naEwcp7z","title":"Outgoing + Service QoS","uri":"db/outgoing-service-qos","url":"/d/6naEwcp7z/outgoing-service-qos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":28,"uid":"GIgvhSV7z","title":"Service + Fabric Application Overview","uri":"db/service-fabric-application-overview","url":"/d/GIgvhSV7z/service-fabric-application-overview","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0},{"id":22,"uid":"duj3tR77k","title":"WarmPathQoS","uri":"db/warmpathqos","url":"/d/duj3tR77k/warmpathqos","slug":"","type":"dash-db","tags":[],"isStarred":false,"folderId":16,"folderUid":"geneva","folderTitle":"Geneva","folderUrl":"/dashboards/f/geneva/geneva","sortMeta":0}]' headers: cache-control: - no-cache connection: - keep-alive content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-VM4N6ScAd/nYqlHGcwBHlw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-gm93FUqpi7d9DI2iaKXjXA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:45 GMT + - Tue, 14 Mar 2023 04:00:41 GMT expires: - '-1' pragma: @@ -1618,8 +1572,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677166.328.443.333987|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678766442.609.442.36881|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains transfer-encoding: @@ -1659,14 +1613,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-udT0v6KWOX4Wfg6yr4Ebsw';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-CrZeSF63b+Fb0s68iXG0kw';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:45 GMT + - Tue, 14 Mar 2023 04:00:41 GMT expires: - '-1' pragma: @@ -1674,7 +1628,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677166.625.441.557434|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766442.851.435.544902|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1713,14 +1667,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-POmdV42mg+ypQosenENbSA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-WEsVKxu2jHSAAoZvjBxR1A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:45 GMT + - Tue, 14 Mar 2023 04:00:42 GMT expires: - '-1' pragma: @@ -1728,7 +1682,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677166.953.435.989170|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766443.186.442.485576|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1767,14 +1721,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-1F3QJ7R1U7R+O8fAQXuugQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-Uye/IhyHpQcK1r5F7GK2kg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:46 GMT + - Tue, 14 Mar 2023 04:00:42 GMT expires: - '-1' pragma: @@ -1782,7 +1736,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677167.142.439.747108|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766443.375.440.133275|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1812,7 +1766,7 @@ interactions: uri: https://clitestserviceaccount-dnh4dreygqa8hjhk.wcus.grafana.azure.com/api/serviceaccounts/3/tokens response: body: - string: '[{"id":1,"name":"myToken","created":"2023-03-13T03:12:44Z","lastUsedAt":"2023-03-13T03:12:45Z","expiration":"2023-03-14T03:12:44Z","secondsUntilExpiration":86397.649161125,"hasExpired":false,"isRevoked":false}]' + string: '[{"id":1,"name":"myToken","created":"2023-03-14T04:00:40Z","lastUsedAt":"2023-03-14T04:00:41Z","expiration":"2023-03-15T04:00:40Z","secondsUntilExpiration":86397.412984684,"hasExpired":false,"isRevoked":false}]' headers: cache-control: - no-cache @@ -1821,14 +1775,14 @@ interactions: content-length: - '210' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-sWfJC+DyILnoerVAJv2jrQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-a/afwxRKjp3vbvnJq6qN0w';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:46 GMT + - Tue, 14 Mar 2023 04:00:42 GMT expires: - '-1' pragma: @@ -1836,8 +1790,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677167.33.442.396107|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678766443.569.439.835053|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1877,14 +1831,14 @@ interactions: content-length: - '43' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-BWysOtdVatIGcZor54ASSQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-ypcQ/16xLC/2zTZUXCxQsA';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:46 GMT + - Tue, 14 Mar 2023 04:00:42 GMT expires: - '-1' pragma: @@ -1892,8 +1846,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677167.555.437.781335|536a49a9056dcf5427f82e0e17c1daf3; - Path=/; Secure; HttpOnly + - INGRESSCOOKIE=1678766443.736.443.86313|536a49a9056dcf5427f82e0e17c1daf3; Path=/; + Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -1931,14 +1885,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-BSYXL/6GJ5WdHxCCcbQrPQ';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-RqzwNnyhaxxHjgPWywVDPg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:46 GMT + - Tue, 14 Mar 2023 04:00:43 GMT expires: - '-1' pragma: @@ -1946,7 +1900,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677167.897.442.646061|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766444.034.438.185377|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -1985,14 +1939,14 @@ interactions: content-length: - '2' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-YZ1pyMGpD45d8bqTNne12w';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-42ccNXnZImCscYXclDz/Kg';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:47 GMT + - Tue, 14 Mar 2023 04:00:43 GMT expires: - '-1' pragma: @@ -2000,7 +1954,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677168.081.442.678870|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766444.238.441.577552|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains @@ -2039,14 +1993,14 @@ interactions: content-length: - '226' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-3sb67orv71srLjRuEMyR1Q';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-9tA4Si0LHi8affR7atoIfQ';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:47 GMT + - Tue, 14 Mar 2023 04:00:43 GMT expires: - '-1' pragma: @@ -2054,8 +2008,8 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677168.36.437.341242|536a49a9056dcf5427f82e0e17c1daf3; Path=/; - Secure; HttpOnly + - INGRESSCOOKIE=1678766444.533.436.957857|536a49a9056dcf5427f82e0e17c1daf3; + Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains x-content-type-options: @@ -2095,14 +2049,14 @@ interactions: content-length: - '37' content-security-policy: - - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-8y2waa2rV/rism9J2EBvWA';object-src + - script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' 'nonce-NHdsGWp2d395PiksQB5T5A';object-src 'none';font-src 'self' fonts.gstatic.com;style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com dc.services.visualstudio.com;manifest-src 'self';media-src 'none';form-action 'self'; content-type: - application/json date: - - Mon, 13 Mar 2023 03:12:47 GMT + - Tue, 14 Mar 2023 04:00:43 GMT expires: - '-1' pragma: @@ -2110,7 +2064,7 @@ interactions: request-context: - appId=cid-v1:23ed4edd-8c1c-433f-a3a0-87361d034c4c set-cookie: - - INGRESSCOOKIE=1678677168.544.441.357180|536a49a9056dcf5427f82e0e17c1daf3; + - INGRESSCOOKIE=1678766444.733.440.406978|536a49a9056dcf5427f82e0e17c1daf3; Path=/; Secure; HttpOnly strict-transport-security: - max-age=15724800; includeSubDomains diff --git a/src/amg/azext_amg/tests/latest/test_amg_scenario.py b/src/amg/azext_amg/tests/latest/test_amg_scenario.py index cde5eeecdd6..5b1e7347eb3 100644 --- a/src/amg/azext_amg/tests/latest/test_amg_scenario.py +++ b/src/amg/azext_amg/tests/latest/test_amg_scenario.py @@ -78,6 +78,8 @@ def test_api_key_e2e(self, resource_group): with unittest.mock.patch('azext_amg.custom._gen_guid', side_effect=self.create_guid): self.cmd('grafana create -g {rg} -n {name} -l {location}') + # Ensure RBAC changes are propagated + time.sleep(120) self.cmd('grafana update -g {rg} -n {name} --api-key Enabled') self.cmd('grafana api-key list -g {rg} -n {name}', checks=[ self.check('length([])', 0) @@ -107,6 +109,8 @@ def test_service_account_e2e(self, resource_group): with unittest.mock.patch('azext_amg.custom._gen_guid', side_effect=self.create_guid): self.cmd('grafana create -g {rg} -n {name} -l {location}') + # Ensure RBAC changes are propagated + time.sleep(120) self.cmd('grafana update -g {rg} -n {name} --service-account Enabled') self.cmd('grafana service-account list -g {rg} -n {name}', checks=[ self.check('length([])', 0) @@ -151,6 +155,8 @@ def test_amg_e2e(self, resource_group): self.check('tags.foo', 'doo'), self.check('name', '{name}') ]) + # Ensure RBAC changes are propagated + time.sleep(120) self.cmd('grafana list -g {rg}') count = len(self.cmd('grafana list').get_output_in_json()) @@ -294,9 +300,9 @@ def test_amg_backup_restore(self, resource_group): # Test Instance self.kwargs.update({ - 'name': 'clitestamg', + 'name': 'clitestbackup', 'location': 'westcentralus', - 'name2': 'clitestamg2' + 'name2': 'clitestbackup2' }) owner = self._get_signed_in_user()