vw_web_tests
Creates, updates, deletes, gets or lists a vw_web_tests
resource.
Overview
Name | vw_web_tests |
Type | View |
Id | azure.application_insights.vw_web_tests |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
kind as kind,
JSON_EXTRACT(properties, '$.SyntheticMonitorId') as "synthetic_monitor_id",
JSON_EXTRACT(properties, '$.Name') as "name",
JSON_EXTRACT(properties, '$.Description') as "description",
JSON_EXTRACT(properties, '$.Enabled') as "enabled",
JSON_EXTRACT(properties, '$.Frequency') as "frequency",
JSON_EXTRACT(properties, '$.Timeout') as "timeout",
JSON_EXTRACT(properties, '$.Kind') as "kind",
JSON_EXTRACT(properties, '$.RetryEnabled') as "retry_enabled",
JSON_EXTRACT(properties, '$.Locations') as "locations",
JSON_EXTRACT(properties, '$.Configuration') as "configuration",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.Request') as "request",
JSON_EXTRACT(properties, '$.ValidationRules') as "validation_rules",
subscriptionId,
resourceGroupName,
webTestName
FROM azure.application_insights.web_tests
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
kind as kind,
json_extract_path_text(properties, '$.SyntheticMonitorId') as "synthetic_monitor_id",
json_extract_path_text(properties, '$.Name') as "name",
json_extract_path_text(properties, '$.Description') as "description",
json_extract_path_text(properties, '$.Enabled') as "enabled",
json_extract_path_text(properties, '$.Frequency') as "frequency",
json_extract_path_text(properties, '$.Timeout') as "timeout",
json_extract_path_text(properties, '$.Kind') as "kind",
json_extract_path_text(properties, '$.RetryEnabled') as "retry_enabled",
json_extract_path_text(properties, '$.Locations') as "locations",
json_extract_path_text(properties, '$.Configuration') as "configuration",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.Request') as "request",
json_extract_path_text(properties, '$.ValidationRules') as "validation_rules",
subscriptionId,
resourceGroupName,
webTestName
FROM azure.application_insights.web_tests
WHERE subscriptionId = 'replace-me';