vw_queries
Creates, updates, deletes, gets or lists a vw_queries
resource.
Overview
Name | vw_queries |
Type | View |
Id | azure.log_analytics.vw_queries |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.id') as "id",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.timeCreated') as "time_created",
json_extract_path_text(properties, '$.timeModified') as "time_modified",
json_extract_path_text(properties, '$.author') as "author",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.body') as "body",
json_extract_path_text(properties, '$.related') as "related",
json_extract_path_text(properties, '$.tags') as "tags",
json_extract_path_text(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';