vw_alerts_histories
Creates, updates, deletes, gets or lists a vw_alerts_histories resource.
Overview
| Name | vw_alerts_histories |
| Type | View |
| Id | azure.alerts_management.vw_alerts_histories |
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,
JSON_EXTRACT(properties, '$.alertId') as "alert_id",
JSON_EXTRACT(properties, '$.modifications') as "modifications",
scope,
alertId
FROM azure.alerts_management.alerts_histories
WHERE scope = 'replace-me' AND alertId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.alertId') as "alert_id",
json_extract_path_text(properties, '$.modifications') as "modifications",
scope,
alertId
FROM azure.alerts_management.alerts_histories
WHERE scope = 'replace-me' AND alertId = 'replace-me';