Skip to main content

vw_queries

Creates, updates, deletes, gets or lists a vw_queries resource.

Overview

Namevw_queries
TypeView
Idazure.log_analytics.vw_queries

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.id') as "id",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.timeCreated') as "time_created",
JSON_EXTRACT(properties, '$.timeModified') as "time_modified",
JSON_EXTRACT(properties, '$.author') as "author",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.body') as "body",
JSON_EXTRACT(properties, '$.related') as "related",
JSON_EXTRACT(properties, '$.tags') as "tags",
JSON_EXTRACT(properties, '$.properties') as "properties",
subscriptionId,
resourceGroupName,
queryPackName,
id
FROM azure.log_analytics.queries
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND queryPackName = 'replace-me';