vw_diagnostics
Creates, updates, deletes, gets or lists a vw_diagnostics
resource.
Overview
Name | vw_diagnostics |
Type | View |
Id | azure_extras.help.vw_diagnostics |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.globalParameters') as "global_parameters",
JSON_EXTRACT(properties, '$.insights') as "insights",
JSON_EXTRACT(properties, '$.acceptedAt') as "accepted_at",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.diagnostics') as "diagnostics",
scope,
diagnosticsResourceName
FROM azure_extras.help.diagnostics
WHERE scope = 'replace-me' AND diagnosticsResourceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.globalParameters') as "global_parameters",
json_extract_path_text(properties, '$.insights') as "insights",
json_extract_path_text(properties, '$.acceptedAt') as "accepted_at",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.diagnostics') as "diagnostics",
scope,
diagnosticsResourceName
FROM azure_extras.help.diagnostics
WHERE scope = 'replace-me' AND diagnosticsResourceName = 'replace-me';