vw_region_healths
Creates, updates, deletes, gets or lists a vw_region_healths
resource.
Overview
Name | vw_region_healths |
Type | View |
Id | azure_stack.infrastructure_insights_admin.vw_region_healths |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.alertSummary') as "alert_summary",
JSON_EXTRACT(properties, '$.usageMetrics') as "usage_metrics",
subscriptionId,
resourceGroupName,
location
FROM azure_stack.infrastructure_insights_admin.region_healths
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.alertSummary') as "alert_summary",
json_extract_path_text(properties, '$.usageMetrics') as "usage_metrics",
subscriptionId,
resourceGroupName,
location
FROM azure_stack.infrastructure_insights_admin.region_healths
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';